This article summarizes 10 suggestions to help you create better jQuery plug-ins. Share it with everyone for your reference. The specific instructions are as follows:
After developing many jQuery plug-ins, I slowly figured out a set of relatively standard structures and patterns for developing jQuery plug-ins. This way I can copy & paste most of the code structure and just focus on the main logic code. Using the same design patterns and architecture also makes it easier to fix bugs or perform secondary development. A proven architecture can ensure that my plug-ins will not cause major problems, no matter whether the plug-in is simple or complex. Here I share 10 experiences I have summarized.
1. Put all your code inside the closure
This is the one I use the most. But sometimes methods outside the closure cannot be called.
But the code of your plug-in only serves your own plug-in, so this problem does not exist. You can put all the code in the closure.
The method should probably be placed inside the Prototype method.
(function($) { //code here })(jQuery);
2. Provide default options for plug-ins
Your plug-in should have some options that developers can set, so it is necessary to provide a restore default option. You can set these options through jQuery’s extend function:
var defaultSettings = { mode : 'Pencil', lineWidthMin : '0', lineWidthMax : '10', lineWidth : '2' }; settings = $.extend({}, defaultSettings, settings || {});
3. Return an element using
JavaScript/jQuery has a good feature that it can perform method cascading, so we should not destroy this feature and always return an element in the method. I follow this rule in every jQuery plugin I create.
$.fn.wPaint = function(settings) { return this.each(function() { var elem = $(this); //run some code here } }
4. Place one-time code outside the main loop
This is very important, but often ignored. Simply put, if you have a piece of code that is a bunch of default values and only needs to be instantiated once, rather than instantiated every time your plug-in function is called, you should put this code outside the plug-in method. This allows your plug-in to run more efficiently and save memory.
var defaultSettings = { mode : 'Pencil', lineWidthMin : '0', lineWidthMax : '10', lineWidth : '2' }; settings = $.extend({}, defaultSettings, settings || {}); $.fn.wPaint = function(settings) { return this.each(function() { var elem = $(this); //run some code here } }
You can notice that the "defaultSettings" in the above code is completely outside the plug-in method. Since these codes are inside the closure, we don't have to worry about these variables being overridden.
5. Why set up Class Prototyping
As the flesh and blood of your code, methods and functions should be placed within the prototype function. There are two reasons:
◆ It can save a lot of memory because you don’t have to create these methods repeatedly.
◆ It is much faster to reference a ready-made method than to recreate it.
Simply put, prototype extends an object and provides methods for it without instantiating these methods in every object. This also makes your code more organized and efficient. Once you get used to this way of developing, you'll find that it saves you a lot of time on your future projects.
6. How to set up Class Prototyping
Setting up a prototype method has two parts. First we need to create our initial class definition, which in most cases means creating an object. This definition contains parts that are different for each object instance. In my Paint jQuery Plugin, I wrote this:
function Canvas(settings) { this.settings = settings; this.draw = false; this.canvas = null; this.ctx = null; return this; }
Let’s add the global method:
Canvas.prototype = { generate: function() { //generate code } }
The key here is to make the prototype method universal, but the data is unique to each instance and can be referenced with "this".
7. Use the “this” object
By using "$this", we can pass the correct reference to other closures. We may also need to pass $this reference to other methods. It should be noted that the name $this can be changed, and any variable name can be used.
Canvas.prototype = { generate: function() { //some code var $this = this; var buton = //...some code button.click(function(){ //using this will not be found since it has it's own this //use $this instead. $this.someFunc($this); }); }, someFunc: function($this) { //won't know what "this" is. //use $this instead passed from the click event } }
8. Save settings in each object
I've been saving my own settings in each object and then manipulating it's own settings. This way you don't have to pass many parameters in different methods. Putting these variables in an object also makes it easier for you to call these variables in other places.
function Canvas(settings) { this.settings = settings; return this; }
9. Separate your Prototype method logic
This may be a basic principle. When you are hesitant to provide a method, you can ask yourself "If someone else were to override this method, would your code meet their needs?" or "How difficult would it be for someone else to write this method?" ". Of course this is a question of flexibility. Here is a list of my Color Picker jQuery Plugin methods, you can refer to them:
generate() appendColors() colorSelect() colorHoverOn() colorHoverOff() appendToElement() showPalette() hidePalette()
10. Provide Setter/Getter options
This one is not necessary, but I found that all my plug-ins include this one. Because it only requires a little bit of code to provide others with a function they may need.
Basically, we just need to allow developers to set or get the existing value of an element:
var lineWidth = $("#container").wPaint("lineWidth"); $("#container").wPaint("lineWidth", "5");
Summary: The above ten items basically cover the core of jQuery plug-in development and can be used as a template for development. Having a basic set of code can greatly shorten your development time and make you more confident when designing your plug-in architecture.
I hope this article will be helpful to everyone’s jquery programming design.

您的PC有时会遇到问题,导致难以正常启动。在这种情况下,您可以使用Windows11恢复USB恢复它。虽然这一切看起来简单明了,但您仍然需要知道如何创建和使用恢复USB。在本指南中,我们将引导您完成轻松执行此任务所需的步骤。我可以下载Windows11恢复USB吗?如果您的操作系统完全崩溃,您可以从另一台运行良好的PC下载Windows11恢复USB。但是,要从中创建恢复驱动器的电脑必须与你的电脑具有相同的体系结构。最好的选择仍然是在PC正常运行时从PC创建USB。这消除了任何兼容性风险。或者,

win11怎么创建本地连接?有小伙伴在升级到win11系统之后,发现一些功能没办法正常使用,有小伙伴使用本地连接得时候,发现没有办法正常连接,不能正常连接的话,就没有办法上网,那么我们应该如何解决呢。小编下面整理了win11创建本地连接步骤,感兴趣的话,跟着小编一起往下看看吧!win11创建本地连接步骤1、点击桌面开始菜单,打开设置面板,如图所示。2、找到网络和Internet选项,如图所示。3、点击设置拨号连接按钮,如图所示。4、点击该栏目下的设置新连接选项,如图所示。5、最后点击设置新网络图

Win11如何创建电源计划?电源计划是管理计算机如何使用和节省电源的硬件和系统设置的集合。近期有用户在问Win11如何创建电源计划?其实方法很简单,还不清楚应该如何操作的朋友们可以来看看下面这篇Win11自定义电源计划的技巧,希望你会喜欢。 Win11自定义电源计划的技巧 在Windows11上创建自定义电源计划 打开开始菜单并键入控制面板。 从搜索结果中选择控制面板。 在控制面板中,将查看方式选项更改为大图标。 接下来,选择电源选项。 单击电源选项菜单中的创建电源计划选项。

假设您有一个要求,您必须从50个人那里收集数据。您可以将Word文件发送给他们,他们可以轻松填写。但是您需要所有50个文档中的格式和对齐方式以及其他所有内容都相同。好吧,如果您将原始Word文件提供给这50个人,而不是50个相同的文档,您将得到50个完全不同的文档,不用说。那么,有解决办法吗?当然,您知道我们总有适合您的解决方案!让我们谈谈模板!Word模板是您的任务的完美解决方案。通过使用Word模板,您可以在用户打开模板文档时提示他们输入一些数据。他们可以在用户提

随着互联网的普及以及人们对电影的热爱,电影网站成为了一个受欢迎的网站类型。在创建一个电影网站时,一个好的框架是非常必要的。Yii框架是一个高性能的PHP框架,易于使用且具有出色的性能。在本文中,我们将探讨如何使用Yii框架创建一个电影网站。安装Yii框架在使用Yii框架之前,需要先安装框架。安装Yii框架非常简单,只需要在终端执行以下命令:composer

MySQL表设计教程:创建一个简单的留言板表介绍在网站开发中,留言板是一个非常常见的功能,用于让用户在网站上发表评论、建立联系等。在设计留言板功能时,一个重要的步骤是创建适当的数据表来存储留言的信息。本文将教你如何使用MySQL来创建一个简单的留言板表。步骤一:创建数据库首先,我们需要创建一个数据库来存储留言板的数据。可以使用以下代码创建数据库:CREATE

MySQL表设计教程:创建一个简单的用户积分表标题:MySQL表设计教程:创建一个简单的用户积分表导语:在开发常见的用户系统中,积分系统是一个重要的组成部分。本文将教你如何使用MySQL创建一个简单的用户积分表,并附带代码示例,帮助你更好地理解和实践该表设计。正文:确定表的名称和字段首先,我们需要确定表的名称和表中所需的字段。对于用户积分表,我们可以将其命名

MySQL表设计教程:创建一个简单的新闻表在开发网站或应用程序时,新闻表是一个常见的数据库表之一。它用于存储和管理新闻文章的相关信息,如标题、内容、作者、发布日期等。本文将介绍如何使用MySQL创建一个简单的新闻表,并给出相应的代码示例。首先,我们需要创建一个数据库来存储新闻表。可以使用以下代码来创建一个名为"news_db"的数据库:CREATEDATA


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download
The most popular open source editor

Notepad++7.3.1
Easy-to-use and free code editor
