如何获取选择元素的值以及如何对变化采取行动?
jQuery 中的 change() 事件出现问题:
$("select[name=cmm]").change(function(){
total();
});
由于某种原因,“total”函数不可用t 被上面的代码调用。 html 代码是:
<select name="cmm">
<option value="none">none</option>
<option value="one">the first</option>
<option value="two">the second</option>
</select>
我是否以错误的方式引用该元素?或者调用函数的方式错误?
更新: 这里的警报功能没有显示,所以我猜更改事件永远不会被调用..
$(document).ready(function() {
$("select[name=cms]").change(function(){
total();
alert($("select[name=cms]").length);
});
});
(是的,我一直在使用 doc-ready)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
更新问题:
确保您的代码在
document.ready
处理程序中运行,以便对于上一个问题:
您缺少选择器上的第二个
m
,它应该是:或更短:
对于第二个,只需使用
当您指定
option< /code> 它获取第一个
的值,无论选择什么。
For updated question:
Make sure your code is running in a
document.ready
handler so the<select>
element is in the DOM and ready, like this:For previous question:
You're missing the second
m
on your selector, it should be:Or shorter:
For the second, just use
.val()
directly on the<select>
to get the value, like this:When you specify
option
it gets the value of the first<option>
, regardless of what's selected.我假设这不是
cm
与cmm
问题,并且您可能太早分配了onChange
处理程序,这意味着 DOM尚未初始化。你的 javaScript 应该在 DOM 准备好之后执行,所以你必须使用 jQuery 的 document.ready 事件,如下所示:
或者将其放在有问题的元素后面,如下所示:
I'll assume it's not the
cm
vs.cmm
issue, and that you're probably assigning theonChange
handler too early, meaning the DOM has not yet been initialized.Your javaScript should be executed after the DOM is ready, so you'll have to use jQuery's document.ready event like this:
Or place it after the element in question, like this:
我遇到问题是因为我使用一个插件来设置选择元素的样式。
我的问题的解决方案(即 onchange 函数不起作用)在这里:
http://code.google.com/p/lnet/issues/detail ?id=41
I was having the problem because of a plugin I was using to style the select element.
The solution to my problem (being that the onchange function wouldn't work) is here:
http://code.google.com/p/lnet/issues/detail?id=41