본문 바로가기

Programming/jQuery

[jQuery] jQuery 초기화

jQuery 초기화



//초기화

function fn_reset() {

if(confirm("초기화 하시겠습니까?")){

$('#formID input[type="text"]').val(""); 

}

}


// name이 no, sub_no를 제외한 input 초기화

$('#formID input[name!="no"][name!="sub_no"]').val("");