Share a self-written jQuery paging plug-in_jquery
I need a JS paging plug-in for work, and I thought about writing one myself. I went online and found one that I didn’t know the code structure of, and it was difficult to solve the problem. Moreover, the plug-ins on the Internet contained too many functions, and some of them were not useful at all. Then, there is no need to load that piece of JS. Secondly, I remembered that I have never written a jQuery plug-in, so I just practiced it. Okay, let’s look at the results first:
http://demo.jb51.net/js/2014/EasyPage/
Let’s briefly talk about the functions this plug-in implements
The background will display all the queried content on the page. This plug-in should control the content so that it can be displayed page by page. There are functions of previous page, next page, home page and last page. When on the first page, the previous page and the home page should be hidden. On the last page, the last page, and the next page should be hidden. Only a few buttons are displayed at a time, and when the last button is clicked, the next few are displayed.
Let’s briefly talk about the encoding process:
First of all, you can boldly write the following code:
//为了更好的兼容性,开始前有个分号 ;( function($){//此处将$作为匿名函数的形参 } )(jQuery)//将jQuery作为实参传递给匿名函数
This code should be familiar to everyone. It is the god-level feature of JavaScript--closure. This is also a common structure for jQuery plugins. Why use closures to make this common structure of jQuery? On the one hand, it can avoid internal temporary variables from affecting the global space, and you can continue to use $ as an alias for jQuery inside the plug-in.
The next step is to write your own methods in this structure. jQuery provides two ways to extend methods in jQuery. Open the jQuery API and find the plug-in mechanism. You can see two methods
• jQuery.extend(object) extends the jQuery object itself. Used to add new functions to the jQuery namespace.
• jQuery.fn.extend(object) extends the jQuery element set to provide new methods (usually used to make plug-ins).
From the above, you can see that jQuery.extend(object) extends jQuery itself. From the perspective of languages such as java or C#, it is equivalent to adding a static method to jQuery. For example, we write like this:
jQuery.extend({ "max":function(){ return max; } })
In this way, it is equivalent to adding a max method to the jQuery object. When calling, you can call it like this: jQuery.max()
So, what is jQuery.fn? Open the jQuery source code and you can see jQuery.fn = jQuery.prototype. Then jQuery.fn.extend is equivalent to adding a member function in jQuery.
You should understand the difference between the two now. The static method can be called directly, jQuery.max(). Member functions can only be called by jQuery instances, such as jQuery("#my").max().
Here I use the jQuery.extend method. The code is as follows:
;( function($){ $.extend({ "easypage":function(options){ options = $.extend({//参数设置 contentclass:"contentlist",//要显示的内容的class navigateid:"navigatediv",//导航按钮所在的容器的id everycount:"5",//每页显示多少个 navigatecount:"5"//导航按钮一次显示多少个 }, options); });
Easypage is the method name used by the paging plug-in. contentclass, navigateid, everycount, and navigatecount are parameters.
The basic framework has been set up, and the next step is to complete the functions.
The first thing is to find the content to be paginated and generate navigation buttons. The code is as follows:
var currentpage = 0;//当前页 var contents = $("."+options.contentclass);//要显示的内容 var contentcount = contents.length;//得到内容的个数 var pagecount = Math.ceil(contentcount/options.everycount);//计算出页数 //拼接导航按钮 var navigatehtml = "<div id='pagefirst' class='pagefirst'><a href='javascript:void(0)'>首页</a></div><div id='pagepre' class='pagepre'><a href='javascript:void(0)'>上一页</a></div>"; for(var i = 1;i <= pagecount;i++){ navigatehtml+='<div class="pagenavigate"><a href="javascript:void(0)">'+i+'</a></div>'; } navigatehtml+="<div id='pagenext' class='pagenext'><a href='javascript:void(0)'>下一页</a></div><div id='pagelast' class='pagelast'><a href='javascript:void(0)'>尾页</a></div>"; //加载导航按钮 $("#"+options.navigateid).html(navigatehtml) 这段代码比较简单,就不多讲。
The next step is to implement some basic functions. Here we extract two of them to display
//隐藏所有的导航按钮 $.extend({ "hidenavigates":function(){ //遍历所有的导航按钮 navigates.each(function(){ $(this).hide(); }) } }); //显示导航按钮 $.extend({ "shownavigate":function(currentnavigate){ $.hidenavigates(); //当前按钮如果小于要求一次显示按钮个数的,从0开始显示 var begin = currentnavigate>=options.navigatecount?currentnavigate-parseInt(options.navigatecount):0; //这里保证从第二页开始,按钮的个数都是2*options.navigatecount if(begin>navigates.length-2*options.navigatecount){ begin = navigates.length-2*options.navigatecount; } //开始显示 for(var i = begin;i < currentnavigate+parseInt(options.navigatecount);i++){ $(navigates[i]).show(); } } });
Ok, the basic code flow is like this. The source code of the program is in the attachment. The specific function implementation has been explained clearly in the source code comments. If you still have questions about closures, you can check out my previous blog to talk about JavaScript closures.
The following summarizes the basic points of the jQuery plug-in. Haha, it is excerpted from sharp jQuery.
•The recommended file name of the plug-in is jquery.[plug-in name].js, such as jquery.color.js
• All object methods should be attached to the jQuery.fn object, and all global functions should be attached to the jQuery object itself
•Inside the plug-in, this points to the jQuery object currently obtained through the selector, unlike the general method, such as the click() method, where the internal this points to the DOM element
•You can traverse all elements through this.each
•All method or function plug-ins should end with a semicolon, otherwise problems may occur during compression. Some add a semicolon
at the beginning of the plug-in to be more secure.
•Plug-ins should return a jQuery object, which ensures chainable operations of the plug-in. Unless the plug-in needs to return some quantity that needs to be obtained, such as a string or array, etc.
•Try to use closure techniques to avoid variable name conflicts
Because it is my first time to write a jQuery plug-in, there may be some things I say that are wrong, please forgive me.

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

What is the Chrome plug-in extension installation directory? Under normal circumstances, the default installation directory of Chrome plug-in extensions is as follows: 1. The default installation directory location of chrome plug-ins in windowsxp: C:\DocumentsandSettings\username\LocalSettings\ApplicationData\Google\Chrome\UserData\Default\Extensions2. chrome in windows7 The default installation directory location of the plug-in: C:\Users\username\AppData\Local\Google\Chrome\User

When users use the Edge browser, they may add some plug-ins to meet more of their needs. But when adding a plug-in, it shows that this plug-in is not supported. How to solve this problem? Today, the editor will share with you three solutions. Come and try it. Method 1: Try using another browser. Method 2: The Flash Player on the browser may be out of date or missing, causing the plug-in to be unsupported. You can download the latest version from the official website. Method 3: Press the "Ctrl+Shift+Delete" keys at the same time. Click "Clear Data" and reopen the browser.

How to use PUT request method in jQuery? In jQuery, the method of sending a PUT request is similar to sending other types of requests, but you need to pay attention to some details and parameter settings. PUT requests are typically used to update resources, such as updating data in a database or updating files on the server. The following is a specific code example using the PUT request method in jQuery. First, make sure you include the jQuery library file, then you can send a PUT request via: $.ajax({u

Title: jQuery Tips: Quickly modify the text of all a tags on the page In web development, we often need to modify and operate elements on the page. When using jQuery, sometimes you need to modify the text content of all a tags in the page at once, which can save time and energy. The following will introduce how to use jQuery to quickly modify the text of all a tags on the page, and give specific code examples. First, we need to introduce the jQuery library file and ensure that the following code is introduced into the page: <

Title: Use jQuery to modify the text content of all a tags. jQuery is a popular JavaScript library that is widely used to handle DOM operations. In web development, we often encounter the need to modify the text content of the link tag (a tag) on the page. This article will explain how to use jQuery to achieve this goal, and provide specific code examples. First, we need to introduce the jQuery library into the page. Add the following code in the HTML file:

There are two most common ways to paginate PHP arrays: using the array_slice() function: calculate the number of elements to skip, and then extract the specified range of elements. Use built-in iterators: implement the Iterator interface, and the rewind(), key(), current(), next(), and valid() methods are used to traverse elements within the specified range.

How to deal with error messages when WordPress plug-in installation fails? As one of the most popular content management systems currently, WordPress has a rich plug-in library, providing users with various functional extensions and customization options. However, when using WordPress, sometimes plug-in installation fails, and error messages may appear, making users feel confused and anxious. This article will introduce some common WordPress plug-in installation failure error messages and how to deal with these problems. 1. Report

How does Google Chrome allow animation plugins to run? Google Chrome is very powerful. Many friends like to use this browser to watch video animations. However, if you want to watch various animated videos, you need to install animation plug-ins in the browser. Many friends use Google Chrome. After installing the animation plug-in, I still cannot care about the video. How should I deal with this problem? Next, let the editor show you the specific steps to allow the animation plug-in to run in Google Chrome. Friends who are interested can come and take a look. Specific steps for Google Chrome to allow animation plug-ins to run: 1. First run Google Chrome on your computer, and click the main menu button in the upper right corner of the homepage (as shown in the picture). 2. After opening the main menu, select the "Settings" option below (as shown in the picture). 3. In settings
