代码没有在IE中与Jquery同步运行

时间:2013-03-20 18:40:40

标签: javascript internet-explorer jquery

我遇到了让IE同步运行jscript代码的主要困难。其他浏览器没有问题。以下是代码示例:

function renew_order() {
    $.ajaxSetup({async:false});
    // These 3 lines are to disable 2 buttons and show a progress indicator.  This never happens,  
    // which is the main problem.
    $('#cancel_order_button').attr("disabled", "disabled");
    $('#renew_order_button').attr("disabled", "disabled");
    $('#renew_order_load').show();

    // Make some Ajax call to do some processing
    $.getJSON(url, function(json) {
    $.each (json, function (type, name) {
        new_order_id = json.OrderId;
        });
    });

    // Close the modal box this is diaplyed on and display some results on the web page
$.modal.close();
display_new_order(order_list);
}

基本上,代码运行,模态框关闭,结果显示。但是,在进程运行时,模式框上的按钮从不显示为已禁用。这似乎只是IE的一个问题。

2 个答案:

答案 0 :(得分:2)

请尝试使用prop功能。

$(".example").prop("disabled", true);

如果那不起作用

document.getElementById("example").disabled = true

答案 1 :(得分:0)

我不认为这与同步性有任何关系,因为在进行ajax调用之前应该禁用按钮。检查控制台窗口中的javascript错误 - 我的猜测是你在那里碰到了什么。