:radio 예제 :radio 정의 :radio 구문
:radio 예제 - type='radio"인 input 요소 선택.
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script> $(document).ready(function(){ $(":radio").wrap("<span style='background-color:red'>"); }); </script> <form action=""> 이름: <input type="text" name="name"><br> 남자: <input type="radio" name="sex" value="m"><br> 여자: <input type="radio" name="sex" value="f"><br> <input type="submit"> </form> 결과보기
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$(":radio").wrap("<span style='background-color:red'>");
});
</script>
<form action="">
이름: <input type="text" name="name"><br>
남자: <input type="radio" name="sex" value="m"><br>
여자: <input type="radio" name="sex" value="f"><br>
<input type="submit">
</form>
결과보기
PS. Firefox 경우, type='radio"인 input 요소의 배경색 지원 X.
:radio 정의
type='radio'인 input 요소 선택.
:radio 구문
$(":radio")