0

我有两个名为“国家”和“州”的下拉菜单。“国家”下拉菜单中有两个值,印度和巴基斯坦。如果我选择“印度”,那么我的第二个下拉菜单“州”应该被启用,但如果我选择“巴基斯坦”,那么我的第二个下拉菜单应该被禁用。我想使用 jquery 来做到这一点。提前致谢。

4

2 回答 2

2

这个问题可以分解为以下几点:

If the country is changed, do the following:
   Determine if the country is India. If it is, enable the state dropdown
      or, if the country is not India, disable the state dropdown

写在代码中,它将是:

<select id="country">
  <option value="india">India</option>
  <option value="pakistan">Pakistan</option>
</select>
<select id="state">
   <option value="1">State 1</option>
   <option value="2">State 2</option>
   <option value="3">State 2</option>
</select>

<script language="javascript">
$(document).ready(function() {

    $("#country").change(function() { // The country value has been changed

          if($(this).val() == 'india') { // The country is set to india

              $("#state").prop('disabled', false); // Since the country is India, enable the state dropdown

          } else { // The country is NOT India

              $("#state").prop('disabled', true); // Since the country is NOT India, so disable the state dropdown

          }

      }

});
</script>

编写此代码有更多“优雅”和“优化”的方式,但我认为以上内容对于刚刚学习解决此类问题的人来说是最清晰的。

于 2012-07-05T20:47:48.493 回答
1
$country.change(function(){
  $state.prop('disabled', true)
  if (/india/i.test($(this).val()))
    $state.prop('disabled', false)
})
于 2012-07-05T20:40:31.570 回答