JSF에서 confirm 팝업 상자의 사용 예시 소개

513 단어
 
  
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();
}

좋은 웹페이지 즐겨찾기