gpt4 book ai didi

jquery - 扩展 picEdit Jquery 插件

转载 作者:行者123 更新时间:2023-12-03 22:42:02 25 4
gpt4 key购买 nike

嗨,我正在尝试扩展 this jQuery 插件,但似乎我似乎找不到像其他插件那样的方法。我试过:

$.fn.picEdit.somefunction = function() {

但是好像插件功能是封装的。

有谁知道如何覆盖这个特定的插件(而不是编辑/破解 JS 插件内部的任何插件)?我只是想知道是否可以延长。谢谢。

最佳答案

您可以创建 picEdit 对象的副本,扩展该对象并将 jQuery.fn.picEdit 设置为副本。

代码:

(function(window, document, $, undefined) {
// your methods
var methods = {
sayHi: function(name) {
alert("Hello " + name);
}
};
// duplicate of the extended picEdit
var newPicEdit = $.extend($.fn.picEdit, methods)
// set jQuery.fn.picEdit
$.fn.picEdit = newPicEdit;
})(this, this.document, jQuery);

祝你好运,希望对你有帮助。

关于jquery - 扩展 picEdit Jquery 插件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35307139/

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