因此,尽管LiveAddress适用于美国地址,但我们也必须支持国际地址。我已经有一个国家/地区下拉列表,仅当该人选择美国时才启用Li​​veAddress。但是,当有人选择美国以外的国家/地区时,我现在需要“禁用” 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并发现,如果您映射了country字段,则一旦有人选择了美国以外的国家,他们的图书馆就会自动关闭。
   $(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(...)对您可能更有用?

09-11 17:40