{"id":1600,"date":"2015-12-15T16:11:38","date_gmt":"2015-12-15T08:11:38","guid":{"rendered":"https:\/\/cowmanchiang.me\/wp\/?p=1600"},"modified":"2023-10-31T15:43:11","modified_gmt":"2023-10-31T07:43:11","slug":"javascriptjquery-how-to-enabledisable-select-field","status":"publish","type":"post","link":"https:\/\/cowmanchiang.me\/wp\/?p=1600","title":{"rendered":"[JavaScript][jQuery] How to enable\/disable select field?"},"content":{"rendered":"<p>[jQuery]<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"\">$(&#039;input[type=radio][name=ldap-sync-type]&#039;).change(function() {\n    if (this.value == &#039;0&#039;) {\n        $(&quot;select[name=day-option]&quot;).prop(&quot;disabled&quot;, true);\n        $(&quot;select[name=clock-option]&quot;).prop(&quot;disabled&quot;, true);\n    } else if (this.value == &#039;1&#039;) {\n        $(&quot;select[name=day-option]&quot;).prop(&quot;disabled&quot;, false);\n        $(&quot;select[name=clock-option]&quot;).prop(&quot;disabled&quot;, false);\n    }\n});<\/pre>\n<p>[JavaScript]<\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"\">$(&#039;input[type=radio][name=ldap-sync-type]&#039;).change(function() {\n    if (this.value == &#039;0&#039;) {\n        $(&quot;select[name=day-option]&quot;).attr(&quot;disabled&quot;, &quot;disabled&quot;);\n        $(&quot;select[name=clock-option]&quot;).attr(&quot;disabled&quot;, &quot;disabled&quot;);\n    } else if (this.value == &#039;1&#039;) {\n        $(&quot;select[name=day-option]&quot;).removeAttr(&quot;disabled&quot;);\n        $(&quot;select[name=clock-option]&quot;).removeAttr(&quot;disabled&quot;);\n    }\n});<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>[jQuery] $(&#039;input[type=radio][name=ldap-sync-type]&#039;).change(function() { if (this.value == &#039;0&#039;) { $(&quot;select[name=day-option]&quot;).prop(&quot;disabled&quot;, true); $(&quot;select[name=clock-option]&quot;).prop(&quot;disabled&quot;, true); } else if (this.value == &#039;1&#039;) { $(&quot;select[name=day-option]&quot;).prop(&quot;disabled&quot;, false); $(&quot;select[name=clock-option]&quot;).prop(&quot;disabled&quot;, false); } }); [JavaScript] $(&#039;input[type=radio][name=ldap-sync-type]&#039;).change(function() { if (this.value == &#039;0&#039;) { $(&quot;select[name=day-option]&quot;).attr(&quot;disabled&quot;, &quot;disabled&quot;); $(&quot;select[name=clock-option]&quot;).attr(&quot;disabled&quot;, &quot;disabled&quot;); } else if &hellip; <a href=\"https:\/\/cowmanchiang.me\/wp\/?p=1600\">Continue reading <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[52,53],"tags":[],"class_list":["post-1600","post","type-post","status-publish","format-standard","hentry","category-javascript","category-jquery"],"_links":{"self":[{"href":"https:\/\/cowmanchiang.me\/wp\/index.php?rest_route=\/wp\/v2\/posts\/1600","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cowmanchiang.me\/wp\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cowmanchiang.me\/wp\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cowmanchiang.me\/wp\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/cowmanchiang.me\/wp\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1600"}],"version-history":[{"count":1,"href":"https:\/\/cowmanchiang.me\/wp\/index.php?rest_route=\/wp\/v2\/posts\/1600\/revisions"}],"predecessor-version":[{"id":1888,"href":"https:\/\/cowmanchiang.me\/wp\/index.php?rest_route=\/wp\/v2\/posts\/1600\/revisions\/1888"}],"wp:attachment":[{"href":"https:\/\/cowmanchiang.me\/wp\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1600"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cowmanchiang.me\/wp\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1600"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cowmanchiang.me\/wp\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1600"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}