본문 바로가기

카테고리 없음

자바스크립트 setTimeout 적용

var deleayTimeout;// 딜레이 때문에 추가

//딜레이
clearTimeout(deleayTimeout); // 타임설정 초기화
deleayTimeout = setTimeout(function(){

$("#create_form").html(form); // create_form 영역에 html로 추가

$("#myForm").submit(); // myForm 폼서브빗

},1000 ); // 1초뒤 실행.