如何更改ajax生成的选择列表中的选择更改
我有
然后单击某些内容,jquery.ajax 生成新的 div 并将 .html(data) 附加到 #someid select。如何检查 select 中的更改?
我问的原因是我从空选择开始,并用与一条记录相关的数据加载它们。
有两个选择,select1 和 select2。我只生成 select1 一次,然后根据 select1 中选定的选项生成 select2。我需要跟踪 select1 是否未更改以及是否需要重新生成 select2。目前它不会执行任何操作 $("#select1").change(alert('test')) 在运行页面后立即启动,但在另一次更改后不会执行任何操作。它只是不会运行。
这可能吗?
谢谢。
I have <select id="someid"></select>
I then click something and jquery.ajax generates new div and attach .html(data) to #someid select. How do I check for change in select?
The reason why I am asking is that I start with empty selects and load them with data related to one record.
There are two selects, select1 and select2. I generate select1 just once and based on selected option from select1 then I generate select2. I need to track if select1 has not been changed and whether I need to regenerate select2. Currently it doesnt do anything $("#select1").change(alert('test')) starts immediately after running the page but wont do anything after another change. It just wont run.
Is this possible?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我没看错问题,那么使用
.change()
就很容易了If ive read the question right, this is very easy using
.change()