私はあなたの問題を少し遊んで、あなたの問題を誤解していなかったと仮定して(コメントを参照)、このスニペットは機能します(ただし、おそらくもっと簡単な解決策があります...)
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が更新され、 jsfiddle$('#select-1').selectmenu('refresh');
でも機能するようになりました