编写自己的 Jquery 函数?
我想编写一个函数,以便可以执行如下命令:
$("#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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
查看插件创作。阅读文档。做并尝试一些事情。例如:
Take a look at plugin authoring. Read documentation. Do and try something. Like for example:
您必须声明一个 jQuery 函数,如下所示:
然后
阅读此处 http://docs.jquery.com/Plugins /创作
You must declare a jQuery function like as:
and after that
read here http://docs.jquery.com/Plugins/Authoring
return this.each(..)
中的return
启用链接 jQuery 插件,以便您可以使用:return
inreturn this.each(..)
enables chaining jQuery plugins, so that you can use:http://docs.jquery.com/Plugins/Authoring
有关制作您所需的所有信息是自己的插件。
http://docs.jquery.com/Plugins/Authoring
all you need to know about making you're own plugin.
然后您可以像这样使用它:
有关完整信息,请检查: http://docs.jquery.com /插件/创作
And then you can use it like this:
For complete info, check this: http://docs.jquery.com/Plugins/Authoring