{"id":283,"date":"2013-01-13T23:13:39","date_gmt":"2013-01-13T15:13:39","guid":{"rendered":"http:\/\/lg.yusemo.com\/?p=283"},"modified":"2013-01-13T23:20:10","modified_gmt":"2013-01-13T15:20:10","slug":"jquery-summary","status":"publish","type":"post","link":"https:\/\/lg.yusemo.com\/?p=283","title":{"rendered":"jquery\u5e38\u7528\u53d6\u503c\u65b9\u5f0f\u603b\u7ed3"},"content":{"rendered":"<h2 style=\"text-align: center;\"><a title=\"jquery\u53d6\u503c\" href=\"http:\/\/lg.yusemo.com\/jquery-summary\">jquery\u5e38\u7528\u53d6\u503c\u65b9\u5f0f\u603b\u7ed3<\/a><\/h2>\n<div>jquery radio\u53d6\u503c\uff0ccheckbox\u53d6\u503c\uff0cselect\u53d6\u503c\uff0cradio\u9009\u4e2d\uff0ccheckbox\u9009\u4e2d\uff0cselect\u9009\u4e2d\uff0c\u53ca\u5176\u76f8\u5173<br \/>\n\u83b7\u53d6\u4e00\u7ec4radio\u88ab\u9009\u4e2d\u9879\u7684\u503c<br \/>\nvar item = $(&#8216;input[@name=items][@checked]&#8217;).val();<br \/>\n\u83b7\u53d6select\u88ab\u9009\u4e2d\u9879\u7684\u6587\u672c<br \/>\nvar item = $(&#8220;select[@name=items] option[@selected]&#8221;).text();<br \/>\nselect\u4e0b\u62c9\u6846\u7684\u7b2c\u4e8c\u4e2a\u5143\u7d20\u4e3a\u5f53\u524d\u9009\u4e2d\u503c<br \/>\n$(&#8216;#select_id&#8217;)[0].selectedIndex = 1;<br \/>\nradio\u5355\u9009\u7ec4\u7684\u7b2c\u4e8c\u4e2a\u5143\u7d20\u4e3a\u5f53\u524d\u9009\u4e2d\u503c<br \/>\n$(&#8216;input[@name=items]&#8217;).get(1).checked = true;<br \/>\n\u83b7\u53d6\u503c\uff1a<br \/>\n\u6587\u672c\u6846\uff0c\u6587\u672c\u533a\u57df\uff1a$(&#8220;#txt&#8221;).attr(&#8220;value&#8221;)\uff1b<br \/>\n\u591a\u9009\u6846checkbox\uff1a$(&#8220;#checkbox_id&#8221;).attr(&#8220;value&#8221;)\uff1b<br \/>\n\u5355\u9009\u7ec4radio\uff1a\u00a0\u00a0 $(&#8220;input[@type=radio][@checked]&#8221;).val();<br \/>\n\u4e0b\u62c9\u6846select\uff1a $(&#8216;#sel&#8217;).val();<br \/>\n\u63a7\u5236\u8868\u5355\u5143\u7d20\uff1a<br \/>\n\u6587\u672c\u6846\uff0c\u6587\u672c\u533a\u57df\uff1a$(&#8220;#txt&#8221;).attr(&#8220;value&#8221;,&#8221;);\/\/\u6e05\u7a7a\u5185\u5bb9<br \/>\n$(&#8220;#txt&#8221;).attr(&#8220;value&#8221;,&#8217;11&#8217;);\/\/\u586b\u5145\u5185\u5bb9<br \/>\n\u591a\u9009\u6846checkbox\uff1a $(&#8220;#chk1&#8221;).attr(&#8220;checked&#8221;,&#8221;);\/\/\u4e0d\u6253\u52fe<br \/>\n$(&#8220;#chk2&#8221;).attr(&#8220;checked&#8221;,true);\/\/\u6253\u52fe<br \/>\nif($(&#8220;#chk1&#8221;).attr(&#8216;checked&#8217;)==undefined) \/\/\u5224\u65ad\u662f\u5426\u5df2\u7ecf\u6253\u52fe<br \/>\n\u5355\u9009\u7ec4radio\uff1a\u00a0\u00a0\u00a0 $(&#8220;input[@type=radio]&#8221;).attr(&#8220;checked&#8221;,&#8217;2&#8242;);\/\/\u8bbe\u7f6evalue=2\u7684\u9879\u76ee\u4e3a\u5f53\u524d\u9009\u4e2d\u9879<br \/>\n\u4e0b\u62c9\u6846select\uff1a\u00a0\u00a0 $(&#8220;#sel&#8221;).attr(&#8220;value&#8221;,&#8217;-sel3&#8242;);\/\/\u8bbe\u7f6evalue=-sel3\u7684\u9879\u76ee\u4e3a\u5f53\u524d\u9009\u4e2d\u9879<br \/>\n$(&#8220;&lt;option value=&#8217;1&#8242;&gt;1111&lt;\/option&gt;<br \/>\n\/\/\u6dfb\u52a0\u4e0b\u62c9\u6846\u7684option<br \/>\n&lt;option value=&#8217;2&#8242;&gt;2222&lt;\/option&gt;&#8221;).appendTo(&#8220;#sel&#8221;)<br \/>\n$(&#8220;#sel&#8221;).empty()\uff1b\/\/\u6e05\u7a7a\u4e0b\u62c9\u68461.\u53d6\u4e0b\u62c9\u83dc\u5355\u9009\u4e2d\u9879\u7684\u6587\u672c<br \/>\n[code lang=&#8221;js&#8221;]<br \/>\n$(&quot;#select option[selected]&quot;).text();\/\/select\u548coption\u4e4b\u95f4\u6709\u7a7a\u683c\uff0coption\u4e3aselect\u7684\u5b50\u5143\u7d20<br \/>\n$(&quot;#select option:selected&quot;).text();\/\/\u5982\u679c\u5199\u6210$(&quot;#select&quot;).text();\u4f1a\u628a\u6240\u6709\u4e0b\u62c9\u83dc\u5355\u7684\u6587\u672c\u9009\u62e9\u51fa\u6765<br \/>\n[\/code]<\/p>\n<p>2.\u83b7\u53d6\u548c\u8bbe\u7f6e\u4e0b\u62c9\u83dc\u5355\u7684\u503c<\/p>\n<p>[code lang=&#8221;js&#8221;]<br \/>\n$(&quot;#select&quot;).val();\/\/\u53d6\u503c<br \/>\n$(&quot;#select&quot;).val(&quot;value&quot;);\/\/\u8bbe\u7f6e,\u5982\u679cselect\u4e2d\u6709\u503c\u4e3avalue\u7684\u9009\u9879,\u8be5\u9009\u9879\u5c31\u4f1a\u88ab\u9009\u4e2d,\u5982\u679c\u4e0d\u5b58\u5728,\u5219select\u4e0d\u505a\u4efb\u4f55\u53d8\u52a8[\/code]<\/p>\n<p>3.\u6e05\u7a7a\u4e0b\u62c9\u83dc\u5355<\/p>\n<p>[code lang=&#8221;js&#8221;]&lt;\/<br \/>\n$(&quot;#select&quot;).empty();<br \/>\n$(&quot;#select&quot;).html(&quot;&quot;);[\/code]<\/p>\n<p>4.\u7ed9\u4e0b\u5217\u83dc\u5355\u6dfb\u52a0\u5143\u7d20<\/p>\n<p>[code lang=&#8221;js&#8221;]<br \/>\n$(&#8216;&lt;option value=&quot;1&quot;&gt;1&lt;\/option&gt;&#8217;).appendTo($(&quot;#select&quot;));<br \/>\n$(&quot;#select&quot;).append(&#8216;&lt;option value=&quot;1&quot;&gt;1&lt;\/option&gt;&#8217;)[\/code]<\/p>\n<p>5.\u53d6\u5355\u9009\u6846\u503c<br \/>\n$(&#8220;#id[checked]&#8221;).val();<br \/>\n6.\u5355\u9009\u6216\u590d\u9009\u6309\u94ae\u7684\u9009\u62e9<\/p>\n<p>[code lang=&#8221;js&#8221;]<br \/>\n$(&quot;#id[value=val]&quot;).attr(&quot;checked&quot;,true);\/\/\u9009\u62e9<br \/>\n$(&quot;#id[value=val]&quot;).attr(&quot;checked&quot;,&quot;&quot;);\/\/\u53d6\u6d88\u9009\u62e9<br \/>\n$(&quot;#id[value=val]&quot;).attr(&quot;checked&quot;,false);\/\/\u53d6\u6d88\u9009\u62e9<br \/>\n$(&quot;#id[value=val]&quot;).removeAttr(&quot;checked&quot;);\/\/\u53d6\u6d88\u9009\u62e9&lt;[code]<br \/>\n7.\u53d6\u590d\u9009\u6846\u503c&lt;\/div&gt;<br \/>\n[code lang=&quot;js&quot;]<br \/>\n$(&quot;input[type=checkbox][checked]&quot;).each(function(){<br \/>\nalert($(this).val());<br \/>\n})<br \/>\n\/\/\u5982\u679c\u7528$(&quot;input[type=checkbox][checked]&quot;).val(),\u53ea\u4f1a\u8fd4\u56de\u7b2c\u4e00\u4e2a\u88ab\u9009\u4e2d\u7684\u503c[code]<br \/>\n8.\u5224\u65ad\u5355\u9009\u6216\u590d\u9009\u6846\u662f\u5426\u88ab\u9009\u4e2d[code lang=&quot;js&quot;]<br \/>\nif($(&quot;#id&quot;).attr(&quot;checked&quot;)){}\/\/\u5224\u65ad\u9009\u4e2d<br \/>\nif($(&quot;#id&quot;).attr(&quot;checked&quot;)==true){}\/\/\u5224\u65ad\u9009\u4e2d<br \/>\nif($(&quot;#id&quot;).attr(&quot;checked&quot;)==undefined){}\/\/\u5224\u65ad\u672a\u9009\u4e2d<br \/>\n[\/code]<\/p>\n<p>9.\u5143\u7d20\u53ef\u7528\u4e0d\u53ef\u7528<br \/>\n[code lang=&#8221;js&#8221;]<br \/>\n$(&quot;#id&quot;).attr(&quot;disabled&quot;,false);\/\/\u8bbe\u4e3a\u53ef\u7528<br \/>\n$(&quot;#id&quot;).attr(&quot;disabled&quot;,true);\/\/\u8bbe\u4e3a\u4e0d\u53ef\u7528<br \/>\n[\/code]<br \/>\n10.\u5224\u65ad\u5143\u7d20\u53ef\u7528\u4e0d\u53ef\u7528<br \/>\n[code lang=&#8221;js&#8221;]<br \/>\nif($(&quot;#id&quot;).attr(&quot;disabled&quot;)){}\/\/\u5224\u65ad\u4e0d\u53ef\u7528<br \/>\nif($(&quot;#id&quot;).attr(&quot;disabled&quot;)==undefined){}\/\/\u5224\u65ad\u53ef\u7528<br \/>\n[\/code]<\/p><\/div>\n","protected":false},"excerpt":{"rendered":"<p>jquery\u5e38\u7528\u53d6\u503c\u65b9\u5f0f\u603b\u7ed3 jquery radio\u53d6\u503c\uff0ccheckbox\u53d6\u503c\uff0cselect\u53d6\u503c\uff0cradio\u9009\u4e2d\uff0ccheckbox\u9009\u4e2d\uff0cselect\u9009\u4e2d\uff0c\u53ca\u5176\u76f8\u5173 \u83b7\u53d6\u4e00\u7ec4radio\u88ab\u9009\u4e2d\u9879\u7684\u503c var item = $(&#8216;input[@name=items][@checked]&#038;#8&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[],"tags":[],"_links":{"self":[{"href":"https:\/\/lg.yusemo.com\/index.php?rest_route=\/wp\/v2\/posts\/283"}],"collection":[{"href":"https:\/\/lg.yusemo.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/lg.yusemo.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/lg.yusemo.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/lg.yusemo.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=283"}],"version-history":[{"count":7,"href":"https:\/\/lg.yusemo.com\/index.php?rest_route=\/wp\/v2\/posts\/283\/revisions"}],"predecessor-version":[{"id":287,"href":"https:\/\/lg.yusemo.com\/index.php?rest_route=\/wp\/v2\/posts\/283\/revisions\/287"}],"wp:attachment":[{"href":"https:\/\/lg.yusemo.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=283"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/lg.yusemo.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=283"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/lg.yusemo.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=283"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}