Jquery外掛程式教學Jquery學習PHP學習 在上面的html程式碼中,細心的您應該可以發現3個radio的name屬性和一個text的name屬性都是「study」 複製程式碼 程式碼如下: $(function(){$('#tijiao').click(function(){if ($ ("input:[name=study]:radio:checked").length == 0){alert("請選擇您想學習的知識");return false;}var study = $("input:[name=study]:radio:checked").val();alert("謝謝!您選擇的是" study);})$ ("#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”)這段程式碼取得的是所有name屬性為「study」而且已經被選中的radio的jquery對象,透過判斷他的length 是否等於0 ,就可以知道這個radio選項是否有一個被選中了。 $(“input[name=study]:text”)這段程式碼取得的是name屬性為「study」的text輸入框的jquery物件。