获取表格单元格中选择的选定值

发布于 2024-10-17 14:55:43 字数 255 浏览 2 评论 0原文

我添加了一个测试脚本来检测 html 选择的更改,但它没有触发。

该选择位于表格单元格内,并且具有“symselect”类别。表id为:flogtable,select位于第一行。

我添加的jQuery测试函数是:

    $('.symselect').change(function() {
          alert('Handler for .change() called.');
     });

I added a test script to detect the change of a html select and it is not firing.

The select is within a table cell and has a class of 'symselect'. The table id is: flogtable and the select is in the first row.

The jQuery test function I added is:

    $('.symselect').change(function() {
          alert('Handler for .change() called.');
     });

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

2024-10-24 14:55:43

您是从 domready 块中调用该代码吗?

$(function() {
  $('.symselect').change(function() {
    alert('Handler for .change() called.');
  });
});

Are you calling that code from within a domready block?

$(function() {
  $('.symselect').change(function() {
    alert('Handler for .change() called.');
  });
});
枯寂 2024-10-24 14:55:43

我认为以下应该有效:

$('#flogtable select.symselect').change(
    function() {
        alert('Handler for `change()` called.');
    });

I think the following should work:

$('#flogtable select.symselect').change(
    function() {
        alert('Handler for `change()` called.');
    });
妖妓 2024-10-24 14:55:43

如果我这样做:

$(function(){
  $('.symselect').change(function() {
    alert('Handler for .change() called.');
  });
});   

它有效。

If I do:

$(function(){
  $('.symselect').change(function() {
    alert('Handler for .change() called.');
  });
});   

it works.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文