jQuery 无线电挫败感:.change 在 Firefox 3.6.13 中未按预期工作

发布于 2024-10-19 19:56:43 字数 1023 浏览 2 评论 0原文

我在 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 技术交流群。

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

发布评论

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

评论(3

糖粟与秋泊 2024-10-26 19:56:43

条线

$("input[name='gender']").change(function)(){

应该是这

$("input[name='gender']").change(function(){

The line

$("input[name='gender']").change(function)(){

it should be

$("input[name='gender']").change(function(){
绝情姑娘 2024-10-26 19:56:43

你有一个拼写错误 - 一个额外的括号:

更改

$("input[name='gender']").change(function)(){

为:

$("input[name='gender']").change(function(){

带有固定代码的 JSFiddle

You've got a typo - an extra parentheses:

Change

$("input[name='gender']").change(function)(){

to:

$("input[name='gender']").change(function(){

JSFiddle with fixed code

旧城烟雨 2024-10-26 19:56:43

你的 jQuery 代码是错误的:

$("input[name='gender']").change(function)(){

应该

$("input[name='gender']").change(function(){

仔细查看括号。

You jQuery code is wrong:

$("input[name='gender']").change(function)(){

should be

$("input[name='gender']").change(function(){

have a close look to the parentheses.

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