1. Document loading completion execution function
$(document).ready(function(){ alert("开始了"); });
2. Add/Remove CSS classes
$("#some-id").addClass("NewClassName"); $("#some-id").removeClass("ClassNameToBeRemoved");
3. Selectors take advantage of the capabilities of CSS and Xpath (XML Path Language) selectors, as well as jQuery’s unique selectors
3.1 Commonly used:
1. Select all paragraphs in the document according to the tag name: $('p')
2. According to ID: $("#some-id")
3. Class: $('.some-class')
3.2 Using CSS selectors:
$("#some-id > li") 选择特定id下的所有子li元素 $("#some-id li:not(.horizontal)") 伪类选择,特定id下所有没有.horizontal 类的li元素
3.3 Use XPath selector:
Attribute selection: $("a[@title]") selects all links with title attribute
$("div[ol]") selects all div elements that contain an ol element
$('a[@href^="mailto:%22]') selects all href attributes [@href] and the attribute value starts with mailto^="mailto" (^ identifies the string starting with $ String knot
tail, * represents any position in the string)
$('a[@href$=".pdf"]') selects all links with href attribute and the attribute value ends with .pdf
$('a[@href*="mysite.com"]') selects all links where mysite.com appears anywhere in href (including mysite.com)
3.4JQuery custom selector (filter, filter out all elements that meet a certain condition from the selected result set), similar to CSS pseudo-class selector, starting with ":"
1.$('div.horizontal:eq(1)') selects the 2nd item in the div collection with class horizontal
$('div:nth-child(1)') selects all divs that are the 1st child element of its parent element
2. Custom selectors: odd and :even to select odd and even rows
$('tr:odd').addClass('odd'); //Filter and select odd elements in the result set
$('tr:even').addClass('even'); //Filter and select even elements in the result set
3. Custom selector: contains()
$('td:contains("Henry")') selects all tables containing the Henry string
3.5JQuery selection function
1.$('#some-id').parent() selects the parent element of a specific element
2.$('#some-id').next() selects the next nearest sibling element of a specific element
3.$('#some-id').siblings() selects all sibling elements of a specific element
4.$('#some-id').find('.some-class') selects all elements containing a specific class under a specific element
5.$('#some-id').find('td').not(':contains("Henry")') Select all elements whose table content under a specific element does not contain Henry
5.$('#some-id').find('td').not(':contains("Henry")').end() .end() means going back to the last .find( ) element at
3.6 Access DOM elements, use the get() method to obtain from the selected JQuery object, and remove the JQuery packaging
var myTag = $('#some-id').get(0).tagName; var myTag = $('#some-id')[0].tagName; //与上面的等效
4. Events (all events are bound to a certain element)
4.1 Binding events
$("#some-id").bind("click", function(){ }) $("#some-id").unbind("click", bindedFunctionName); //移除已绑定的事件,前提是绑定的函数有名称(不是匿名函数) $("#some-id").click(function(){ })
4.2 Composite function binding event
$("#some-id").toggle(function(){ } ,function(){ }); //交替执行 $(“#some-id”).toggleClass("hidden"); // 添加/删除类交替进行 $("#some-id").hover(function(){ }, function(){ }); //鼠标进入元素时执行第一个函数,离开元素时执行第二个函数 $("#some-id").one("click", functionName); //只需触发一次,随后便立即解除绑定
4.3 Imitate users to trigger an event
$("#some-id").trigger("click"); //Trigger the click event of a specific element
5. Add effects to elements
5.1 Read or set CSS style attributes
$("#some-id").css("property") //Read style value
$('#some-id').css('property', 'value') //Set a style value
$('#some-id').css({property1: 'value1', property2: 'value2'}) //Set multiple style attributes
5.2 Change font size
$(document).ready({ $('#button-id').click(function(){ var currentSize = $('#text-id').css('fontSize'); //获取字体大小,如30px var num = parseFloat(currentSize, 10); //将值转为浮点数,.parseFloat( , )为javascript内置函数,这里是转为10进制的浮点数 var unit = currentSize.slice(-2); //获取单位名称,如px,.slice()是javascript内置函数,获取字符串指从定位置开始的子字符串,-2表示倒数两个字符 num *= 1.5; $('text-id').css('fontSize', num + unit); //设置字体大小样式 }); });
5.3隐藏和显示
$('#some-id').show(); //无效果,会自动记录原来的display属性值(如:block, inline),再回复display值
$('#some-id').hide(); //无效果,等效于:$('#some-id').css('display', 'none'); 隐藏元素,不保留物理位置
大小、透明度逐渐变化的显示或隐藏
$('#some-id').show('slow'); //指定显示速度,在指定时间内元素的高、宽、不透明度逐渐增加到属性值,有:slow是0.6秒,normal是0.4秒,fast是0.2秒,或者直接填入毫秒数
$('#some-id').hide(800); //与.show()指定速度显示一样,指定时间内高、宽、不透明度逐渐减小到0
淡入淡出
$('some-id').fadeIn('slow'); //指定时间内不透明度属性值由0增加到1
$('some-id').fadeOut('slow'); //指定时间内不透明度值由1减小到0
5.4构建具有动画效果的show
主要调用.animate()方法,其有4个参数:包含样式属性及值的映射;可选的速度参数;可选的缓动类型;可选的回调函数;
1.并发显示多个效果
$('#some-id').animate({height: 'show', width: 'show', opacity: 'show'}, 'slow', function(){ alert('动画显示元素');});
$('div .button').animate({left:600, height:44}, 'slow'); //水平位置从0移动到600,高度由0增加到44
2.排队显示多个效果,级联多个.animate(),一个效果显示完了再显示下一个效果
$('#some-id').animate({left:600}, 'slow').animate({height: 44}, 'slow');
6DOM操作
6.1属性操作
$('#some-id').attr('property'); //获取属性 $('#some-id').attr('property','value'); //设置属性 $('#some-id').attr({'property1': 'value1', 'property2': 'value2'}); //设置多个属性 修改一个段落中所有链接,并给每个链接附上新的id号 $('div p .content a').each(function(index){ $(this).attr({ 'rel': 'external', 'id': 'link_' + index }); }); // ********* JQuery的.each()类似一个迭代器,给其传递的参数index类似一个计数器 *********
6.2插入新元素
1.将元素插入到其他元素前面:.insertBefore()和.before()
2.将元素插入到其他元素后面:.insertAfter()和after()
3.将元素插入到其他元素内部或后面(相当于追加一个元素):appendTo()和append()
4.将元素插入到其他元素内部或前面(相当于追加一个元素):prependTo()和prepend()
6.3包装元素,将元素包装到其他元素中 .wrap();
$('#some-id').wrap('
6.4复制元素 .clone()
1.$('#some-id').clone().appendTo($('body'));
2.复制深度,当传入false参数时,只复制匹配上的元素,其内部的其他元素不复制
$('#some-id').clone(false)
注意:.clone()方法不会复制元素中的事件
6.5移除匹配元素中的元素,类似清空元素
$('#some-id').empty();
6.6从DOM中移除匹配的元素及其后代元素
$('#some-id').remove();
有关常用的JQuery函数及功能小结 小编就给大家介绍到这里,希望对大家有所帮助!

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

10 fun jQuery game plugins to make your website more attractive and enhance user stickiness! While Flash is still the best software for developing casual web games, jQuery can also create surprising effects, and while not comparable to pure action Flash games, in some cases you can also have unexpected fun in your browser. jQuery tic toe game The "Hello world" of game programming now has a jQuery version. Source code jQuery Crazy Word Composition Game This is a fill-in-the-blank game, and it can produce some weird results due to not knowing the context of the word. Source code jQuery mine sweeping game

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.

This tutorial demonstrates creating dynamic page boxes loaded via AJAX, enabling instant refresh without full page reloads. It leverages jQuery and JavaScript. Think of it as a custom Facebook-style content box loader. Key Concepts: AJAX and jQuery

This tutorial demonstrates how to create a captivating parallax background effect using jQuery. We'll build a header banner with layered images that create a stunning visual depth. The updated plugin works with jQuery 1.6.4 and later. Download the

This JavaScript library leverages the window.name property to manage session data without relying on cookies. It offers a robust solution for storing and retrieving session variables across browsers. The library provides three core methods: Session


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

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

Dreamweaver Mac version
Visual web development tools

SublimeText3 Chinese version
Chinese version, very easy to use

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Linux new version
SublimeText3 Linux latest version
