0
jQuery 내 강한 측면 :-) 나는 내 기능을 새 기능을 추가하는 방법을 모르겠다. 라디오 값을 확인하면 html로 hided div 표시하고 싶습니다. 이제 스크립트 쇼 사업부는 내가 라디오 버튼을 클릭 할 때 :jQuery - 라디오 버튼을 확인
<script type="text/javascript">
$(document).ready(function(){
$('input[type="radio"]').click(function(){
var inputValue = $(this).attr("value");
var targetBox = $("." + inputValue);
$(".box").not(targetBox).hide();
$(targetBox).show();
});
});
</script>