Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
463 views
in Technique[技术] by (71.8m points)

jquery - How can I programmatically change a select box selection from within the control's own change event and have it work in mobile browsers

Consider the following simplified HTML and jQuery code:

<select id="select1">
  <option value="10">10</option>
  <option value="5">5</option>
  <option selected="selected" value="1">1</option>
</select>

$('#select1').change(function () {
 if ($('#select1').val() > 5) {
   $('#select1').val(1);
   alert("Select set to 1");
 }
});

fiddle

If the user selects 10 from the select control it's reset to 1 from within the control's own change event. This works from browsers on my desktop machine, but not on Chrome or Safari on an iPhone or iPad. (Actually on mobile browsers the selection IS set to 1 and then back to 10)

Basically, I'm trying to limit what a user can select under certain conditions.

Is there a way to reset an option on a select control from within it's own change event, and have it work in mobile browsers?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You need to select option either by [value=1] or give it a class .default for example.

$('#select_id').val(1);

And then refresh .selectmenu('refresh') for re-enhancement.

$('#select_id').selectmenu('refresh');

Demo 1 - Demo 2


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...