我是这个JQuery Mobile的新手。我遇到的第一个问题是我无法使用Javascript在JQuery mobile中将多个选择选项设置为“选择”attr为“false”/ unselected。
我找到的文档告诉我刷新一个选择,所以我可以通过javascript在它的页面底部操作它: http://jquerymobile.com/demos/1.0a4.1/docs/forms/forms-selects.html
我做到了。但我不知道我做错了什么。这是我的代码:
<script type="text/javascript">
function SelectAll(){
var select=document.getElementById('sfruit');
if (select.options[1].selected == true){
alert('All Selected');
for (x in select.options){
if(x > 1){
if (select.options[x].selected == true){
alert(select.options[x].value+' selected');
RefreshSelect();
select.options[x].selected == false;
}else{
alert(select.options[x].value+' unselected');
}
}
}
}
}
function RefreshSelect(){
var myselect = $("select#sfruit");
myselect[0].selectedIndex = 5;
myselect.selectmenu("refresh");
}
</script>
<select onChange="SelectAll()" data-native-menu="false" id="sfruit" name="sfruit" multiple>
<option>Select Fruit</option>
<option value="all" selected>All</option>
<option value="apple">Apple</option>
<option value="orange">Orange</option>
<option value="grape">Grape</option>
<option value="melon">Melon</option>
</select>
我真正想要的是当我选择“全部”选项时,已选择的其他选项将被取消选中。 如果你还是不明白我的意思,我会附上你的意思,后来,这已经很晚了。
谢谢你们。请帮助我。 .. :))
答案 0 :(得分:0)
我认为这就是你想要的
$(window).load(function(){
$("select#sfruit").change(function () {
$("select#sfruit option:selected").each(function (obj) {
if($(this).index()==1){
alert('All Selected');
$("select#sfruit option:selected").removeAttr("selected");
$("select#sfruit option:eq(1)").attr("selected","");
}
});
});
});
<select data-native-menu="false" id="sfruit" name="sfruit" multiple>
<option>Select Fruit</option>
<option value="all" selected>All</option>
<option value="apple">Apple</option>
<option value="orange">Orange</option>
<option value="grape">Grape</option>
<option value="melon">Melon</option>
</select>