在元素上运行 jquery 函数。这段代码有什么问题?
这段代码有什么问题?
$(function() {
function testfunction() { $(this).addClass('testing');}
$('.tester').testfunction();
});
What is wrong with this code?
$(function() {
function testfunction() { $(this).addClass('testing');}
$('.tester').testfunction();
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
testfunction()
未添加到 jQuery 函数堆栈中。如果您希望能够在任意对象上调用它,则应该将其添加到 jQuery 函数堆栈中:
您应该查看 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:
You should take a look at jQuery's Plugins/Authoring page for more information on how to properly write plugins.