BIG
정의되지 않은 Object 의 호출시 예외처리 샘플
jQuery("button").bind(
"click",function()
{
console.log( "this.id => " + this.id );
let goUrl = "[TARGE_TURL]";
let searchValue = jQuery("#searchValue").val();
try {
switch(this.id)
{
case "btn_sarch_submit":
if( searchValue.length > 0 )
{
goUrl = goUrl + "?searchValue=" + encodeURIComponent( searchValue );
window.location.href = goUrl;
}// end if
break;
case "btn_search_reset":
window.location.href = goUrl;
break;
case "btn_addnew":
window.location.href = goUrl;
break;
}// end switch
}catch (err){
alert(err)
return false;
}
}
);
LIST
'!!...JS-HTML' 카테고리의 다른 글
[javascript] 간단한 테이블 TR 추가 삭제 샘플 (0) | 2022.10.04 |
---|---|
[javascript]checkbox select all / uncheck all sample code (0) | 2022.09.13 |
[javascript]ajax file upload function sample (0) | 2022.08.10 |
[javascript]ReplaceAll 함수 구현 (0) | 2022.04.03 |
[javascript]jQuery ajax 반복호출시 async 옵션 설정 (0) | 2017.05.09 |