作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
嗨,我正在尝试扩展 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/
嗨,我正在尝试扩展 this jQuery 插件,但似乎我似乎找不到像其他插件那样的方法。我试过: $.fn.picEdit.somefunction = function() { 但是好像插件功能是
我是一名优秀的程序员,十分优秀!