触发“onchange”添加/删除 SELECT 选项时的事件
我有一个第三方 js 函数,可以动态添加/删除 SELECT 元素的选项,并且我想在选项更改时执行操作。
我尝试将“onchange”事件附加到选择,但仅在更改“选择”而不是“选项”时才会触发该事件。
关于我如何做到这一点有任何提示吗?
I have a third-party js function that dynamically adds/removes options to a SELECT element and I would like to perform an action whenever options are changed.
I tried attaching an 'onchange' event to the select but the event is triggered only when changing 'selection', not 'options'.
Any hint on how I can do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须破解第 3 方脚本才能在添加/删除时调用您的函数(或将第 3 方脚本交换为合适的 jquery 插件)。
you'll have to hack the 3rd party script to call your function when it adds/removes (or exchange the 3rd party script to a suitable jquery plugin).