在元素上运行 jquery 函数。这段代码有什么问题?

发布于 2024-10-17 10:28:02 字数 155 浏览 0 评论 0原文

这段代码有什么问题?

$(function() {
    function testfunction() { $(this).addClass('testing');}
    $('.tester').testfunction();
});

What is wrong with this code?

$(function() {
    function testfunction() { $(this).addClass('testing');}
    $('.tester').testfunction();
});

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

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

发布评论

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

评论(1

回眸一笑 2024-10-24 10:28:02

testfunction() 未添加到 jQuery 函数堆栈中。

如果您希望能够在任意对象上调用它,则应该将其添加到 jQuery 函数堆栈中:

$.fn.testfunction = function() {
   this.addClass('testing');
};

$('.tester').testfunction(); // success!

您应该查看 jQuery 的 Plugins/Authoring 页面,了解有关如何正确编写插件的更多信息。

testfunction() is not added to the jQuery function stack.

If you want to be able to call it on an arbitrary object, you should add it to the jQuery function stack:

$.fn.testfunction = function() {
   this.addClass('testing');
};

$('.tester').testfunction(); // success!

You should take a look at jQuery's Plugins/Authoring page for more information on how to properly write plugins.

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