我有一个带有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中进行两级盒子确认?