如何更改ajax生成的选择列表中的选择更改

发布于 2024-10-19 16:28:20 字数 409 浏览 0 评论 0原文

我有

然后单击某些内容,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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

挽袖吟 2024-10-26 16:28:20

如果我没看错问题,那么使用 .change() 就很容易了

$('select#someid').live('change', function() {
  // you code
});

If ive read the question right, this is very easy using .change()

$('select#someid').live('change', function() {
  // you code
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文