其他确认内的确认框

时间:2015-09-07 08:33:33

标签: jquery asp.net messagebox confirm

我有一个带有OnClientClick属性的asp按钮myButton,它返回jquery myConfirm()函数。

我的功能如下:

function myConfirm(){
    if(confirm("accept")==true){
        confirm("second message");
        return true;
    }
    else {
        otherFunc();
        return false;
    }
}

我遇到了问题,因为第二个确认框没有触发。在myButton点击jquery fire第一个确认框后,单击确定和取消,当我单击OK时,我想用第二个消息激活第二个确认框。如何在jquery中进行两级盒子确认?

0 个答案:

没有答案