Jquery confirm弹出框的用法

发布时间:2020-04-07编辑:脚本学堂
分享一个jquery中confirm确认弹出框的例子,有需要的朋友参考下。

jquery代码中弹出confirm确认框,代码:
 

复制代码 代码示例:

function checkInput(objectSource) {
if(objectSource.onclick){
objectSource.oldOnClick = objectSource.onclick;
objectSource.onclick = null;
}

var attachfile = $('#attachment').val();
if(content.indexOf("附件") != -1 && attachfile == undefined) {
if(!confirm( '不要忘记添加附件哦。')){
return false;
}
}
objectSource.oldOnClick();
}