레이어팝업 목록


alert/confirm usage

alert(context,callback,button)
argument description default type
context 컨텐츠 내용 html html markup
callback 콜백함수 function
button alert창의 '확인' 버튼에 들어가는 텍스트 '닫기' text
confirm(context,callback,button1,button2)
argument description default type
context 컨텐츠 내용 html html markup
callback 확인 버튼 누른 후 콜백함수 function
callback fn1 : 확인 버튼 누른 후 콜백함수
fn2 : 닫기 버튼 누른 후 콜백함수
var testcallback = {fn1: callback1, fn2: callback2} object
button1 confirm 창에서 '확인' 버튼에 들어가는 텍스트 '로그인' text
button2 confirm 창에서 '취소' 버튼에 들어가는 텍스트 '닫기' text