10 tips to help you create better jQuery plugins_jquery
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.

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

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

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



The ogive graph graphically represents the cumulative distribution function (CDF) of a set of data, sometimes called a cumulative frequency curve. It is used to examine data distribution and discover patterns and trends. Matplotlib, Pandas, and Numpy are some of the libraries and tools provided by Python for creating otive graphics. In this tutorial, we will look at how to use Matplotlib to generate ogive graphics in Python. To create a cumulative curve chart, we need to import the required libraries. In this example we will use Matplotlib, Pandas and Numpy. Matplotlib is a popular data visualization library for creating in Python

Constants and variables are used to store data values in programming. A variable usually refers to a value that can change over time. A constant is a type of variable whose value cannot be changed during program execution. There are only six built-in constants available in Python, they are False, True, None, NotImplemented, Ellipsis(...) and __debug__. Apart from these constants, Python does not have any built-in data types to store constant values. Example An example of a constant is demonstrated below - False=100 outputs SyntaxError:cannotassigntoFalseFalse is a built-in constant in Python that is used to store boolean values

How to Personalize Calls on iPhone Apple’s iOS 17 introduces a new feature called Contact Posters that allows you to personalize the look of your call screen on your iPhone. This feature allows you to design a poster using selected photos, colors, fonts, and Memoji as contact cards. So when you make a call, your custom image will appear on the recipient's iPhone exactly as you envisioned. You can choose to share your unique contact poster with all your saved contacts, or choose who can see it. Likewise, during a call exchange, you will also see other people's contact posters. Additionally, Apple lets you set specific contact photos for individual contacts, making calls from those contacts

This article will interest you if you are interested in using GIMP for pixel art creation on Windows. GIMP is a well-known graphics editing software that is not only free and open source, but also helps users create beautiful images and designs easily. In addition to being suitable for beginners and professional designers alike, GIMP can also be used to create pixel art, a form of digital art that utilizes pixels as the only building blocks for drawing and creating. How to Create Pixel Art in GIMP Here are the main steps to create pixel pictures using GIMP on a Windows PC: Download and install GIMP, then launch the application. Create a new image. Resize width and height. Select the pencil tool. Set the brush type to pixels. set up

Title: Realme Phone Beginner’s Guide: How to Create Folders on Realme Phone? In today's society, mobile phones have become an indispensable tool in people's lives. As a popular smartphone brand, Realme Phone is loved by users for its simple and practical operating system. In the process of using Realme phones, many people may encounter situations where they need to organize files and applications on their phones, and creating folders is an effective way. This article will introduce how to create folders on Realme phones to help users better manage their phone content. No.

Many friends expressed that they want to know how to create a family in Gree+ software. Here is the operation method for you. Friends who want to know more, come and take a look with me. First, open the Gree+ software on your mobile phone and log in. Then, in the options bar at the bottom of the page, click the "My" option on the far right to enter the personal account page. 2. After coming to my page, there is a "Create Family" option under "Family". After finding it, click on it to enter. 3. Next jump to the page to create a family, enter the family name to be set in the input box according to the prompts, and click the "Save" button in the upper right corner after entering it. 4. Finally, a "save successfully" prompt will pop up at the bottom of the page, indicating that the family has been successfully created.

In this article, we will learn how to create user interface using python. What is a graphical user interface? The term "graphical user interface" (or "GUI") refers to a set of visual element items that can be interacted with in computer software to display information and interact. In response to human input, objects may change appearance characteristics such as color, size, and visibility. Graphical components such as icons, cursors, and buttons can be enhanced with audio or visual effects (such as transparency) to create graphical user interfaces (GUIs). If you want more people to use your platform, you need to make sure it has a good user interface. This is because the combination of these factors can greatly affect the quality of service provided by your app or website. Python is widely used by developers because it provides

How to use Highcharts to create a Gantt chart requires specific code examples. Introduction: The Gantt chart is a chart form commonly used to display project progress and time management. It can visually display the start time, end time and progress of the task. Highcharts is a powerful JavaScript chart library that provides rich chart types and flexible configuration options. This article will introduce how to use Highcharts to create a Gantt chart and give specific code examples. 1. Highchart
