JQM:在更改事件上选择多个选项

时间:2012-10-31 16:54:22

标签: events jquery-mobile binding

我的JQM页面中有一个(多个)选择。

我需要在任何其他选项选项上强制选项值'A'取消选择。

HTML就像这样:

<select name="select-1" id="select-1" multiple="multiple" data-native-menu="false" />
   <option value='A'>a</option>
   <option value='B'>b</option>
   <option value='C'>c</option>
</select>

我正在使用这样的代码,没有成功......: - (

$("select#select-1").change(function() {
    $("select#select-1").val('A').attr("selected", false).trigger("refresh");
});

看起来我正在尝试取消选择的选项被选中,而其他所有选项都被取消选择(排除当前的选项)......: - (

jsfiddle是here

1 个答案:

答案 0 :(得分:2)

我对你的问题玩了一下,假设我没有误解你的问题(见评论),这个片段有效(但可能有更简单的解决方案......)

如果选择了值为'B'的选项,则会取消选择值为'A'的选项。

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>if B selected, deselect A</title>
  <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
  <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
  <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
</head>

<body>
  <!-- if B selected, deselect A -->
  <div data-role="page">
    <div data-role="content">
      <select name="select-1" id="select-1" multiple="multiple" data-native-menu="false" />
        <option id="option-A" value='A'>a</option>
        <option id="option-B" value='B'>b</option>
        <option id="option-C" value='C'>c</option>
      </select>
    </div><!-- /content -->
  </div><!-- /page -->

  <script>
    $("#select-1").change(function() {
      var mySelection = $(this).val();
      if (mySelection !== null) {
        if (mySelection.indexOf('B') >= 0) {
          $("#option-A").attr("selected", false);
          $('#select-1').selectmenu('refresh');
        };
      };
    });
  </script>
</body>
</html>

编辑现在使用$('#select-1').selectmenu('refresh');进行了更新,现在它也适用于jsfiddle