변수가 있을경우 alert 창 띄우고 그페이지에 input 부분에 포커스를 주고싶은데..
본문
변수가 있을경우 alert 창 띄우고 그페이지에 input 부분에 포커스를 주고싶은데
만약 $it_option 이라는 변수가 존재할 경우
<input type='hidden' class='it_option' value='<?=$it_option?>'>
<script>
var it_option = $('.it_option').val();
if(it_option){
$( "#opt_chk_all" ).focus(function() {
alert( "Handler for .focus() called." );
});
}
</script>
<input id='opt_chk_all'>
이렇게 적었는데 아무 반응도 없네요..
어떻게 수정해야 되나요;;
답변을 작성하시기 전에 로그인 해주세요.