14 useful Jquery tips shared_jquery
1. Return the Jquery object instance through the method
Use var someDiv = $(‘#someDiv’).hide(); instead of var someDiv = $(‘#someDiv’); someDiv.hide();
2. Use find to find
Use $('#someDiv').find('p.someClass').hide(); instead of $('#someDiv p.someClass').hide(); because you don’t have to trigger Jquery’s Sizzle engine. At the same time, when writing selectors, try to keep your selectors simple and optimize the rightmost selector
3. Don’t abuse $(this)
Use $('#someAnchor').click(function() { alert( this.id ); }); instead of $('#someAnchor').click(function() {alert($(this). attr('id'));});
4. The abbreviation of ready
Use $(function() { }); instead of $(document).ready(function() {});
5. Make your code safe
Method 1 (using noConflict)
var j = jQuery.noConflict();
j(‘#someDiv’).hide();
// The line below will reference some other library's $ function.
$(‘someDiv’).style.display = ‘none’;
Method 2 (pass in parameter Jquery)
(function($) {
// Within this function, $ will always refer to jQuery
})(jQuery);
Method 3 (via ready method)
jQuery(document).ready(function($) {
// $ refers to jQuery
});
6. Simplify the code
Use each instead of for, use arrays to save temporary variables, and use document fragments. This is actually the same thing you need to pay attention to when writing native Javascript.
7. How to use Ajax
Jquery provides useful ajax methods such as get getJSON post ajax
8. Access native properties and methods
For example, the method of obtaining element id is
// OPTION 1 – Use jQuery
var id = $(‘#someAnchor’).attr(‘id’);
// OPTION 2 – Access the DOM element
var id = $(‘#someAnchor’)[0].id;
// OPTION 3 – Use jQuery’s get method
var id = $(‘#someAnchor’).get(0).id;
// OPTION 3b – Don't pass an index to get
anchorsArray = $(‘.someAnchors’).get();
var thirdId = anchorsArray[2].id;
9. Use PHP to check Ajax requests
By using xhr.setRequestHeader(“X-Requested-With”, “XMLHttpRequest”); The server side such as PHP can pass
function isXhr() {
return $_SERVER['HTTP_X_REQUESTED_WITH'] === 'XMLHttpRequest';
}
To check if it is an Ajax request, it may be used in some situations where Javascript is disabled
10.The relationship between Jquery and $
At the bottom of the Jquery code, you can see the following code
window.jQuery = window.$ = jQuery; $ is actually a shortcut of Jquery
11. Conditional loading Jquery
<script>!window.jQuery && document.write(‘<script src=”js/jquery-1.4.2.min.js”></script>')
If CDN does not download to Jquery, read from local
12.Jquery Filters
<script><br> $('p:first').data('info', 'value'); // populates $'s data object to have something to work with<br> $.extend(<br> jQuery.expr[":"], {<br> block: function(elem) {<br> return $(elem).css(“display”) === “block”;<br> },<br> hasData : function(elem) {<br> return !$.isEmptyObject( $(elem).data() );<br> }<br> }<br> );<br> $(“p:hasData”).text(“has data”); // grabs paras that have data attached<br> $(“p:block”).text(“are block level”); // grabs only paragraphs that have a display of “block”<br> </script>
Note: $.expr[":"] is equivalent to $.expr.filters
13.hover method
$(‘#someElement’).hover(function() {
//You can use the toggle method here to achieve the effect of sliding over and sliding out
});
14. Pass in the attribute object
When creating an element, Jquery1.4 can pass in an attribute object
$('', {
id : ‘someId’,
className : ‘someClass’,
href : ‘somePath.html’
});
Even properties or events specified by Jquery such as text, click

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

Win11 Tips Sharing: One trick to skip Microsoft account login Windows 11 is the latest operating system launched by Microsoft, with a new design style and many practical functions. However, for some users, having to log in to their Microsoft account every time they boot up the system can be a bit annoying. If you are one of them, you might as well try the following tips, which will allow you to skip logging in with a Microsoft account and enter the desktop interface directly. First, we need to create a local account in the system to log in instead of a Microsoft account. The advantage of doing this is

We often create and edit tables in excel, but as a novice who has just come into contact with the software, how to use excel to create tables is not as easy as it is for us. Below, we will conduct some drills on some steps of table creation that novices, that is, beginners, need to master. We hope it will be helpful to those in need. A sample form for beginners is shown below: Let’s see how to complete it! 1. There are two methods to create a new excel document. You can right-click the mouse on a blank location on the [Desktop] - [New] - [xls] file. You can also [Start]-[All Programs]-[Microsoft Office]-[Microsoft Excel 20**] 2. Double-click our new ex

In C language, it represents a pointer, which stores the address of other variables; & represents the address operator, which returns the memory address of a variable. Tips for using pointers include defining pointers, dereferencing pointers, and ensuring that pointers point to valid addresses; tips for using address operators & include obtaining variable addresses, and returning the address of the first element of the array when obtaining the address of an array element. A practical example demonstrating the use of pointer and address operators to reverse a string.

VSCode (Visual Studio Code) is an open source code editor developed by Microsoft. It has powerful functions and rich plug-in support, making it one of the preferred tools for developers. This article will provide an introductory guide for beginners to help them quickly master the skills of using VSCode. In this article, we will introduce how to install VSCode, basic editing operations, shortcut keys, plug-in installation, etc., and provide readers with specific code examples. 1. Install VSCode first, we need

Title: PHP Programming Tips: How to Jump to a Web Page within 3 Seconds In web development, we often encounter situations where we need to automatically jump to another page within a certain period of time. This article will introduce how to use PHP to implement programming techniques to jump to a page within 3 seconds, and provide specific code examples. First of all, the basic principle of page jump is realized through the Location field in the HTTP response header. By setting this field, the browser can automatically jump to the specified page. Below is a simple example demonstrating how to use P

Win11 tricks revealed: How to bypass Microsoft account login Recently, Microsoft launched a new operating system Windows11, which has attracted widespread attention. Compared with previous versions, Windows 11 has made many new adjustments in terms of interface design and functional improvements, but it has also caused some controversy. The most eye-catching point is that it forces users to log in to the system with a Microsoft account. For some users, they may be more accustomed to logging in with a local account and are unwilling to bind their personal information to a Microsoft account.

Forms are an integral part of writing a website or application. Laravel, as a popular PHP framework, provides rich and powerful form classes, making form processing easier and more efficient. This article will introduce some tips on using Laravel form classes to help you improve development efficiency. The following explains in detail through specific code examples. Creating a form To create a form in Laravel, you first need to write the corresponding HTML form in the view. When working with forms, you can use Laravel

Detailed explanation of the tips for using the √ symbol in the Word box. In daily work and study, we often need to use Word for document editing and typesetting. Among them, the √ symbol is a common symbol, which usually means "right". Using the √ symbol in the Word box can help us present information more clearly and improve the professionalism and beauty of the document. Next, we will introduce in detail the skills of using the √ symbol in the Word box, hoping to help everyone. 1. Insert the √ symbol In Word, there are many ways to insert the √ symbol. one
