为什么Javascript全局变量不是全局的?

时间:2010-10-02 05:48:51

标签: javascript jquery javascript-events

我有一个外部js文件处理删除一些元素。根据结果​​,我将确定是否需要刷新页面。

var deleted = 0; // first assume not deleted 

$(function() {
    $("#action a.action-delete").click(function() {
        var id = $(this).parent().parent().attr("id");
        $.get("modify-sale.php", { "id" : id, "action" : "delete" }, function (data) { deleted = 1;  }, "text");
        if (deleted) return true; // if success then refresh
        else return false; // else does not refresh
    });

没问题是我无法更改jQuery事件处理程序中的全局变量deleted。我可以确保删除操作成功,但此变量不会将其值更改为1。

为什么?

2 个答案:

答案 0 :(得分:5)

Ajax是异步的,因此在执行deleted检查后会设置if else变量。尝试将支票放入回调中。

答案 1 :(得分:0)

$("#action a.action-delete").click(function() {
    var id = $(this).parent().parent().attr("id");
    $.ajax({
        "url" :  "modify-sale.php",
        "type" : "GET",
        "data" : { "id" : id, "action" : "delete" },
        "dataType" : "text",
        "async" : false,
        "success" : function(data) {
            if (data == 'success') {
                $("#msg").text("delete success").show();
                $("#msg").fadeOut(1000);
                deleted = 1;
            } else {
                $("#msg").text("delete failed, plesase try later").show();
                $("#msg").fadeOut(5000);
            }
        },
        "error" : function() {
            $("#msg").text("delete failed, please try later").show();
            $("#msg").fadeOut(5000);
        }
    });
    if (deleted) return true;
    else return false;
});

我用异步设置修复它来同步。