$(function(){ $('#tijiao').click(function (){ if ($ ("input:[name=study]:radio:checked").length == 0){ alert("배우고 싶은 지식을 선택하세요"); return false; } var 연구 = $("input:[name=study]:radio:checked").val(); alert("감사합니다! 선택하셨습니다. " 연구); }) $ ("#set_jqeury_study").click(function(){ var $button = $(this); $("input:[name=study]:radio" ).each(function(){ if (this.value == $button.attr('title')){ this.checked=true; } }) }) $("# view_input_text").click(function(){ alert($("input[name=study]:text").val()); }) })
$("input:[name=study]:radio:checked") 이 코드는 이름 속성이 "study"이고 선택된 라디오의 모든 jquery 객체를 가져옵니다. 길이가 0 인지 판단하여 라디오 옵션 중 하나가 선택되었는지 알 수 있습니다. $("input[name=study]:text") 이 코드는 name 속성이 "study"인 텍스트 입력 상자의 jquery 객체를 가져옵니다.
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.