Javascript语句执行第一次,第二次执行不执行

时间:2015-10-09 03:19:02

标签: javascript if-statement

我使用此代码从表中删除选定的行,如果我选择接受并且变量彼此不相等,则"否则"语句执行,如果他们是相似的"如果"语句执行。我的问题是,如果我离开页面并创建填充表的数据,然后返回到表并尝试选择我刚刚创建的if语句未命中的行,除非我先刷新页面。基本上桌子是玩家创造的挑战,显然玩家不能接受他自己创造的挑战,这就是这段代码试图确定的内容

// Delete record
$(document).on("click", "." + deletebutton, function () {

    if (name == p_name) {
        alert("You can not select a challenge you created!");

        location.href = '../myaccount.php';
    } else {
        var id = $(this).attr("id");
        if (id) {



            if (confirm("A League Fee of 14% will be deducted from each players  bet amount. This fee is non refundable after you accept. Do you really want to Accept this Match ?")) ajax("rid=" + id, "del");
        }
    }
});

0 个答案:

没有答案