정말 자주쓰지만 매번 구글에 get radio checked   라고 검색하게 만드는 이 기능이 갑갑해서 블로그에 기록하는 겸 써놓는다.


소스가 아래와 같을 때 


        <h5> 푸시 발싸</h5>

        <label class="radio">

          <input type="radio" name="targetSelect" id="sendAll" value="option1" checked>

            전체 발송

        </label>

        <label class="radio">

          <input type="radio" name="targetSelect" id="sendiOS" value="option1" >

            iOS 대상 

        </label>

        <label class="radio">

          <input type="radio" name="targetSelect" id="sendAndroid" value="option1" >

            Android 대상

        </label>

        <label class="radio">

          <input type="radio" name="targetSelect" id="sendTarget" value="option1" >

            특정 사용자 UID (... , ... , ... 로 입력)

        </label> 



jQuery에서 아래와 같은 방식으로 선택된 객체를 얻어올 수 있다



 $("input[name=targetSelect]:checked")



그냥 오늘도 검색하고 넘어갈라 그랬는데 구글 첫 페이지에 있는 글이 문법이 틀려서 console에서 실행이 안되서 짜증나서 써봄. 

Posted by TY
,