本文為大家詳細介紹下JSF中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(); }