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.
我有以下事件处理程序:
$(document).live('click', function(e) { alert('test'); });
如何防止在 select.option 单击时调用处理程序?处理程序仅在 Forefox 20.0.1 中调用。Chrome 和旧版本的 firefox 可以正常工作。
未经测试,但这样的东西应该可以工作
$(document).on('click', function(e) { if ($('option').has(e.target).length === 0) { alert('test') } })