gpt4 book ai didi

jquery - 原型(prototype)转化为jqu​​ery

转载 作者:行者123 更新时间:2023-12-01 08:24:22 24 4
gpt4 key购买 nike

如何将现有的原型(prototype)函数更改为 jquery 函数?

即。

MainWindow = function()
{
this.activeUser = "";
this.name = "";
}

以及对bindAll的调用

MainWindow.prototype.bindAll = function() {

最佳答案

你可以编写一个 jQuery 插件...

(function($) {

$.fn.mainWindow = function() {
...
}

})(jQuery);

然后像这样使用它:

$('#thingy').mainWindow();

关于jquery - 原型(prototype)转化为jqu​​ery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5072918/

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