从原型迁移到 jquery

2022-01-23 00:00:00 migration jquery javascript prototypejs

我正在将我的 js 库从原型迁移到 jquery.但是,我不知道如何替换以下代码:

I am migrating my js lib from prototype to jquery. However, I don't know how to replace the following code:

var utilityMethods = {     
        autoHide : function(element) {
               //...
}

Element.addMethods('SPAN', utilityMethods);

是否有扩展 DOM 的 jQuery 等价物?

Is there a jQuery equivalent for extending the DOM?

谢谢

推荐答案

你像这样扩展 JQuery 对象:

You extend JQuery objects like so:

var utilityMethods = {     
    autoHide : function(element) {
           //...
    }
};

jQuery.fn.extend(utilityMethods);

更多信息:http://docs.jquery.com/Core/jQuery.extend

相关文章