jsfiddle问题

发布于 2024-11-25 22:51:19 字数 137 浏览 5 评论 0原文

我无法让这个极其简单的 jsfiddle 工作。它只是应该在单击按钮时提醒测试。我在这里缺少什么?

http://jsfiddle.net/u9nG6/2/

I can't get this extremely simple jsfiddle to work. Its just supposed to alert test when button is clicked. What am I missing here?

http://jsfiddle.net/u9nG6/2/

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

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

发布评论

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

评论(4

撩起发的微风 2024-12-02 22:51:20

您必须将加载方法更改为无换行(头部)。

它与 JavaScript 如何加载以及何时读取方法签名有关。 http://jsfiddle.net/u9nG6/11/

You have to change the load method to no wrap (head).

It has something to do with how the JavaScript gets loaded and when the method signature is read. http://jsfiddle.net/u9nG6/11/

给妤﹃绝世温柔 2024-12-02 22:51:20

选择 jQuery 框架来加载 onDomReady,因此您的函数被包装在 jQuery 匿名函数 $(function(){ }); 中并且不可见。要么将 jQuery 更改为无换行(head) 加载,要么在全局范围内定义您的函数。

jQuery framework is selected to load onDomReady so your function is wrapped in the jQuery anonymous function $(function(){ }); and is not visible. Either change jQuery to load as no wrap (head) or define your function at the global scope.

梦幻的心爱 2024-12-02 22:51:20

请参阅此处

您需要在全局范围内定义 validateForm 函数,以便能够在 HTML 中使用它。否则,您将其定义为 onDomReady 事件范围内的函数,在该范围之外无法访问该函数。

更“jQuery-ish”的方法是使用 jQuery 来处理 click 事件,如下所示:

$("#id_btnSubmit").click(validateForm);

请参阅 此处 查看该建议的示例。

See here.

You needed to define your validateForm function at the global scope in order to be able to use it in the HTML like that. Otherwise you had it defined as a function within the scope of the onDomReady event, which is inaccessible outside that scope.

A more "jQuery-ish" approach would be to use jQuery to handle the click event like this:

$("#id_btnSubmit").click(validateForm);

See here for an example of that suggestion.

阳光下的泡沫是彩色的 2024-12-02 22:51:20

您正在使用 jquery + ondomready。这意味着您编写的任何 JavaScript 都会被放置在其中

$(function() {

});

这会导致范围问题。您可以尝试以下方法。

window.validateForm = function() {
}

You're using jquery + ondomready. This means any javascript you write is placed within

$(function() {

and

});

this leads to a scope problem. You can try the following instead.

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