Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在我的选择选项上触发点击事件。
如果选择列表是这样的普通多选框,这在 FF/Safari 中可以正常工作:
http://jsfiddle.net/YZUBs/47/
但是,如果我包含 jQuery Mobile 框架,则单击事件不再触发:
http://jsfiddle.net/YZUBs/48/
任何人?
clickon 事件<option>不是标准的,因此并非所有浏览器都支持。 您应该使用onchange事件而不是onclick.
click
<option>
onchange
onclick
您可以阅读此搜索中的所有问答,这是所有人的主题...
更新的小提琴