获取表格单元格中选择的选定值
我添加了一个测试脚本来检测 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您是从 domready 块中调用该代码吗?
Are you calling that code from within a domready block?
我认为以下应该有效:
I think the following should work:
如果我这样做:
它有效。
If I do:
it works.