如何通过javascript禁用LiveAddress

时间:2013-12-20 10:05:49

标签: javascript jquery smartystreets

因此,虽然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并发现如果你映射国家字段,一旦有人选择了美国以外的国家,他们的图书馆自动关闭。

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

很棒的功能,不幸的是,在线文档没有详细说明这个NOR在线聊天团队知道这个功能。

1 个答案:

答案 0 :(得分:1)

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(...)可能对您更有用?