12

我有一个包含值“全部”和“自定义”的选择列表。在选择值为“自定义”时,应出现一个具有“资源”类的 div,如果值为“全部”,则应将其隐藏。

形式为:

<div>
    <label>Privileges:</label>
    <select name="privileges" id="privileges" class="" onclick="craateUserJsObject.ShowPrivileges();">
        <option id="all" value="all">All</option>
        <option id="custom" value="custom">Custom</option>
    </select>
</div>
<div class="resources" style=" display: none;">resources</div>

用于此的 javascript 是:

ShowPrivileges: function() {
    var Privileges = jQuery('#privileges');
    var select = this.value;
    Privileges.change(function() {
        if (select === 'custom') {
            $('.resources').show();
        }
    });
}

这应该如何工作?抱歉,我知道这应该很简单,但我对这一切都很陌生。

4

7 回答 7

13

您需要使用 val 方法:

var Privileges = jQuery('#privileges');
var select = this.value;
Privileges.change(function () {
    if ($(this).val() == 'custom') {
        $('.resources').show();
    }
    else $('.resources').hide(); // hide div if value is not "custom"
});

http://jsfiddle.net/RWUdb/

于 2013-03-26T19:27:31.157 回答
1

您可以通过删除 onClick 并从选项中删除 ID 来清理 HTML。

HTML:

<div>
    <label>Privileges:</label>
    <select name="privileges" id="privileges">
        <option value="all">All</option>
        <option value="custom">Custom</option>
    </select>
</div>
<div class="resources" style=" display: none;">resources</div> 

你的 JavaScript 可以简单地做到这一点:

$('#privileges').on('change', function() {
        if($(this).val() === 'all') {
            $('.resources').hide();
        } else {
            $('.resources').show();
        }
 });
于 2013-03-26T19:30:39.487 回答
1
Privileges.on('change',function(){
    if($(this).val()=='custom'){
        $('.resources').show();
    }else{
        $('.resources').hide();
    }
})
于 2013-03-26T19:25:05.880 回答
0

您将要添加事件处理程序:

$("#privileges").change(craateUserJsObject.ShowPrivileges);

然后,在您的 ShowPrivileges 功能中:

var val = $("#privileges").val();
if(val == "whatever")
    //do something
else
    //do something
于 2013-03-26T19:27:01.880 回答
0
  $("#privileges").change(function(){
     var select=  $(this).val();
       if(select=='custom'){
          //some code
         }
    }); 

或者

  var select=$('#privileges :selected').val()
    if(select=='custom'){
    //some code
  }
于 2013-03-26T19:27:24.920 回答
0

你让这太复杂了:

首先,删除 inline onclick。由于您使用的是 jQuery,因此请动态附加您的处理程序。

<div>
    <label>Privileges:</label>
    <select name="privileges" id="privileges">
        <option id="all" value="all">All</option>
        <option id="custom" value="custom">Custom</option>
    </select>
</div>
<div class="resources" style=" display: none;">resources</div>

其次,不要听点击然后附加change处理程序。直接贴上去

<script>
jQuery('#privileges').on('change',function(){
    if(jQuery(this).val()=='custom'){
        jQuery('.resources').show();
    } else {
        jQuery('.resources').hide();
    }
});
</script>
于 2013-03-26T19:28:06.220 回答
0

这可以用 `toggle()` 作为简写来完成:

$('#privileges').change(function() {
  $('.resources').toggle($(this).val() == 'custom');
});

如果您想在页面加载中切换显示,您可以触发相同的change()事件,例如:

$('#privileges').change(function() {
  $('.resources').toggle($(this).val() == 'custom');
}).change();

$('#privileges').change(function() {
  $('.resources').toggle($(this).val() == 'custom');
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div>
  <label>Privileges:</label>
  <select name="privileges" id="privileges">
    <option id="all" value="all">All</option>
    <option id="custom" value="custom">Custom</option>
  </select>
</div>
<div class="resources" style=" display: none;">resources</div>

于 2019-04-01T16:12:15.347 回答