如何识别选择选项何时被选择(不一定改变)?
以下代码将显示新选定的值如果它与当前值不同 :
HTML:
<select>
<option value='123'>123</option>
<option value='456'>456</option>
<option value='789'>789</option>
</select>
JS:
$(function() {
$('select').change(function() { alert($(this).val()); });
});
我想在选择选项时显示该值(即使它是当前选择的值)。
我怎样才能做到这一点?
The following code displays the new selected value if it is different from the current value:
HTML:
<select>
<option value='123'>123</option>
<option value='456'>456</option>
<option value='789'>789</option>
</select>
JS:
$(function() {
$('select').change(function() { alert($(this).val()); });
});
I would like to display the value whenever an option selected (even if it is the currently selected value).
How could I achieve this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
挂钩
click
事件。它会更频繁地被解雇,但这是你能得到的最好的。Hook on the
click
event. It'll be a bit more often fired, but that's the best you can get.