jQuery 语法错误

发布于 2024-11-30 21:10:00 字数 351 浏览 0 评论 0原文

$(document).ready(function(){
    $("#input_6_4\\.3_label").html("City/Borough");
    $("#input_6_8\\.3_label").html("City/Borough");

    $("#gform_next_button_6_42").click(function(){
        alert("hi");

    )};
});

Firebug 不断地用上面的代码吐出一个语法错误,违规者是这些字符:

)};

有什么想法是错误的吗,因为代码对我来说似乎很好?

$(document).ready(function(){
    $("#input_6_4\\.3_label").html("City/Borough");
    $("#input_6_8\\.3_label").html("City/Borough");

    $("#gform_next_button_6_42").click(function(){
        alert("hi");

    )};
});

Firebug keeps spitting out a syntax error with the above code with the offender being these characters:

)};

Any ideas at what's wrong because the code seems good to me?

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

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

发布评论

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

评论(2

爱格式化 2024-12-07 21:10:00

它们的顺序错误:

)};

应该是:

});

They are in the wrong order:

)};

Should be:

});
断爱 2024-12-07 21:10:00

它应该是 });,在关闭函数体之前关闭参数列表。

it should be });, you close your arguments list before closing the function body.

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