将单击绑定到选择选项,但不绑定到选择元素本身
有没有办法将单击事件绑定到选择选项而不是选择框本身?
更改事件也对我不起作用,因为当我第一次单击该框时,我无法选择第一个选项(因为默认情况下它已被选中),而且我确实需要能够选择第一个选项。
有没有办法解决这个问题,要么绑定点击事件,要么绑定更改事件?
Is there a way to bind a click event to the select options and not to the select box itself?
The change event also won't work for me because when I first click the box I'm not able to select the first option (since it's already selected by default), and I really need to be able to also select the first option.
Is there any way to get around this, either binding a click or a change event?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以:
a)添加“请选择...”
选项
作为select。
b) 在页面加载时运行“选择已更改”代码以选择默认值 类似这样的。
和
You could either:
a) Add a 'Please select...'
option
as the default item in theselect
.b) Run the 'selection changed' code on page load to pick up the default, something like this.
and