반응형

[jQuery] 모든 라디오버튼, 체크박스 클릭시 로그인하라는 경고 보여주시

 

        $("[type='radio']").click(function(e){
            if (uid == ""){
       alert('로그인 후 이용해 주세요');
                $(this).attr("checked",false);
            }
        });
        $("[type='checkbox']").click(function(e){
            if (uid == ""){
       alert('로그인 후 이용해 주세요');
                $(this).attr("checked",false);
            }
        });

반응형

+ Recent posts