编写自己的 Jquery 函数?

发布于 2024-12-25 13:41:19 字数 125 浏览 0 评论 0原文

我想编写一个函数,以便可以执行如下命令:

$("#Button").glow();

我必须重写什么,或者我必须如何构造“glow”函数,以便我可以按照上面的方式调用它?

I want to write a function so that I can execute commands like so:

$("#Button").glow();

What do I have to override, or how do I have to structure the "glow" function so that I can call it the way I do above?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

萌化 2025-01-01 13:41:19

查看插件创作。阅读文档。做并尝试一些事情。例如:

(function($) {
    $.fn.glow = function(options) {  
        return this.each(function() {     
            // TODO: do something for each element that matched your selector
        });
    };
})(jQuery);

Take a look at plugin authoring. Read documentation. Do and try something. Like for example:

(function($) {
    $.fn.glow = function(options) {  
        return this.each(function() {     
            // TODO: do something for each element that matched your selector
        });
    };
})(jQuery);
傲鸠 2025-01-01 13:41:19

您必须声明一个 jQuery 函数,如下所示:

jQuery.fn.myPlugin = function() {

  // Do your awesome plugin stuff here

};

然后

$("#Button").myPlugin();

阅读此处 http://docs.jquery.com/Plugins /创作

You must declare a jQuery function like as:

jQuery.fn.myPlugin = function() {

  // Do your awesome plugin stuff here

};

and after that

$("#Button").myPlugin();

read here http://docs.jquery.com/Plugins/Authoring

心在旅行 2025-01-01 13:41:19
(function($) {
    $.fn.glow = function() {
       return this.each(function() { //<--optionally, parameters here
           // your logic here
           // `this` at this point refers to the DOM element
       });
    }
})(jQuery); //<-- Closure to allow using $ where $ is not jQuery any more

return this.each(..) 中的 return 启用链接 jQuery 插件,以便您可以使用:

$("selector").glow().anothermethod();
//If return was omitted, the previous line would throw an error
(function($) {
    $.fn.glow = function() {
       return this.each(function() { //<--optionally, parameters here
           // your logic here
           // `this` at this point refers to the DOM element
       });
    }
})(jQuery); //<-- Closure to allow using $ where $ is not jQuery any more

return in return this.each(..) enables chaining jQuery plugins, so that you can use:

$("selector").glow().anothermethod();
//If return was omitted, the previous line would throw an error
无言温柔 2025-01-01 13:41:19

http://docs.jquery.com/Plugins/Authoring

有关制作您所需的所有信息是自己的插件。

http://docs.jquery.com/Plugins/Authoring

all you need to know about making you're own plugin.

瑾夏年华 2025-01-01 13:41:19
(function( $ ){

  $.fn.glow = function() {

    //your selected element is 'this'
    this. ...//do your magic

  };
})( jQuery );

然后您可以像这样使用它:

$('#element').glow();

有关完整信息,请检查: http://docs.jquery.com /插件/创作

(function( $ ){

  $.fn.glow = function() {

    //your selected element is 'this'
    this. ...//do your magic

  };
})( jQuery );

And then you can use it like this:

$('#element').glow();

For complete info, check this: http://docs.jquery.com/Plugins/Authoring

新人笑 2025-01-01 13:41:19
jQuery.fn.glow = function () {
  //Do Stuff
}
jQuery.fn.glow = function () {
  //Do Stuff
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文