gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-01 00:38:37 25 4
gpt4 key购买 nike

这段代码有什么问题?

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

最佳答案

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

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

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

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

你应该看看 jQuery 的 Plugins/Authoring有关如何正确编写插件的更多信息,请访问页面。

关于jquery - 在元素上运行 jquery 函数。这段代码有什么问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4991078/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com