1

我的 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 在这里

4

1 回答 1

2

我对您的问题进行了一些尝试,并假设我没有误解您的问题(请参阅评论),此片段有效(但是可能有更简单的解决方案...)

如果选择了 value='B' 的选项,则 value='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>

EDIT现在更新了$('#select-1').selectmenu('refresh');,现在也可以在jsfiddle中使用

于 2012-10-31T21:29:03.093 回答