jQuery 无线电挫败感:.change 在 Firefox 3.6.13 中未按预期工作
我在 Google、jQuery 和 stackoverflow 上搜索过这个问题,基本上都给出了相同的例子。
我按照无线电 .change()
示例进行了解释,但我无法让它工作。我的代码很简单。用户必须单击男性或女性。在更改时,.change()
应该触发警报(用于测试目的)和函数。然而,两人都没有开火。我的 jQuery 和 HTML 代码“看起来”都是正确的,但我不确定为什么它没有触发。
HTML 代码:
<div class="float_right">
<label for="gender">*Gender:</label><br />
<input type="radio" name="gender" value="male" />Male<br />
<input type="radio" name="gender" value="female" />Female
<div id="gender_error">
<ul class="ul">
<li class="gender_error_1 element_error">Choose either male or female!</li>
<li class="element_valid">a</li>
</ul>
</div>
</div>
jQuery 代码:
$("input[name='gender']").change(function)(){
alert('Gender has changed!');
validateElement('#add_livestock', 'gender', '.gender_error_1')
});
I have searched on Google, jQuery, and stackoverflow for this issue and all basically give the same examples.
I followed the radio .change()
examples explained, but I could not get it to work. My code is straightforward. The user must click either male or female. On change, the .change()
is supposed to fire the alert(for test purposes) and the function. However, neither are firing. Both my jQuery and HTML code "look" correct, but I am not exactly sure why it is not firing.
HTML code:
<div class="float_right">
<label for="gender">*Gender:</label><br />
<input type="radio" name="gender" value="male" />Male<br />
<input type="radio" name="gender" value="female" />Female
<div id="gender_error">
<ul class="ul">
<li class="gender_error_1 element_error">Choose either male or female!</li>
<li class="element_valid">a</li>
</ul>
</div>
</div>
jQuery code:
$("input[name='gender']").change(function)(){
alert('Gender has changed!');
validateElement('#add_livestock', 'gender', '.gender_error_1')
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
条线
应该是这
The line
it should be
你有一个拼写错误 - 一个额外的括号:
更改
为:
带有固定代码的 JSFiddle
You've got a typo - an extra parentheses:
Change
to:
JSFiddle with fixed code
你的 jQuery 代码是错误的:
应该
仔细查看括号。
You jQuery code is wrong:
should be
have a close look to the parentheses.