gpt4 book ai didi

javascript - 如何通过 javascript 禁用 LiveAddress

转载 作者:行者123 更新时间:2023-11-30 05:41:16 25 4
gpt4 key购买 nike

因此,虽然 LiveAddress 非常适合美国地址,但我们也必须支持国际地址。我已经有一个国家/地区下拉列表,仅当用户选择美国时才启用 LiveAddress。但是,只要有人选择美国以外的国家/地区,我现在就需要“禁用”LiveAddress。

$(".chosen-select").on("change", function (e) {
if (e.added.id == "USA") {
showUSStates();
$.LiveAddress("<My Key>");
} else if (e.added.id == "CAN") {
showCANProvinces();
//Disable Live Address here?
} else {
//Disable Live Address here?
$("label[for=State]").html("Province");
$("#State").hide()
$("#Province").show()
$("#State").empty();
}
});

谢谢!

解决方案:

所以它没有记录在他们的网页中,但我阅读了 unminimized js file并发现如果您映射国家/地区字段,一旦有人选择美国以外的国家/地区,他们的图书馆就会自动关闭。

   $(document).ready(function () {
showUSStates();
$.LiveAddress({
key: "<My Key>",
addresses: [{
id: 'billing',
street: '#Address1',
city: '#City',
state: '#State',
zipcode: '#PostalCode',
**country: '#Country'** }],
autoVerify: false
});
});

很棒的功能,不幸的是在线文档没有对此进行详细说明,在线聊天团队也不知道此功能。

最佳答案

http://smartystreets.com/kb/liveaddress-api/plugin/advanced列出 autoVerify(...)

autoVerify([newSetting]) ver 2.4.3+
Pass in a truthy value to turn on auto-verify, or a falsey value to turn it off. Don't pass in anything to simply return the current autoVerify setting.

我不确定这是否是您要查找的内容?

编辑 deactivate(...)activate(...) 可能对您更有用?

关于javascript - 如何通过 javascript 禁用 LiveAddress,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20701051/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com