1.The jQuery wrapper:Select and wrap DOM elements to operate upon
The $() function (an alias for the jQuery() function) returns a special Java-Script object containing an array of the DOM elements that match the selector. Such as:
$("body > div"); //This selector selects direct <div> children of <body>.
2.Utility functions:begins with "$.",Serve as a namespace for global utility functions
$.trim(someString); //Identical to jQuery.trim(someString);
3.The document ready handler
When the page DOM has fully loaded (but only the DOM, exclude the images and others resources), the function inside the "$()" will execute!
$(function() {
$("table tr:nth-child(even)").addClass("even");
});
//not like window.onload=function(){...} ,window.onload will execute when the page has completely loaded!!
4.Making DOM elements:
$("<p>Hi there!</p>") // create a new paragraph element
5.Extending jQuery
$("form#myForm input.special").disable();
分享到:
相关推荐
### JQuery in Action: Key Insights and Learning Points #### Introduction to JQuery **JQuery**, a lightweight and powerful JavaScript library, has revolutionized the way developers interact with web ...
《jQuery in Action》是一本专为初学者和中级开发者设计的HTML版本教程,它深入浅出地介绍了jQuery库的核心概念和实用技巧。jQuery是一个广泛使用的JavaScript库,它简化了HTML文档遍历、事件处理、动画制作和Ajax...
jQuery实战(jQuery in Action) 中文版 PDF 人民邮电出版社 Part 4 of 6
《jQuery in Action》是一本专为开发者设计的深入学习jQuery的书籍,旨在帮助读者全面掌握这一流行的JavaScript库。jQuery是一个高效、简洁的JavaScript框架,它极大地简化了网页文档操作、事件处理、动画制作以及...
《jQuery实战:jQuery in action (2008版)》是一本深受开发者喜爱的经典书籍,其配套源代码是学习和理解jQuery核心概念、方法和技巧的重要辅助资源。这本书旨在帮助读者掌握JavaScript库jQuery的精髓,从而更高效地...
jQuery in Action(3rd) 英文mobi 第3版 本资源转载自网络,如有侵权,请联系上传者或csdn删除 本资源转载自网络,如有侵权,请联系上传者或csdn删除
《jQuery in Action 2nd Edition》是一本深受开发者欢迎的jQuery技术专著,其源码提供了丰富的实践示例,帮助读者深入理解并掌握jQuery的核心概念和技术。以下将根据标题、描述以及压缩包中的文件名,详细阐述jQuery...
### Jquery in Action中文版知识点概述 #### 一、jQuery简介 - **定义与起源**:jQuery是一款轻量级的JavaScript库,它极大地简化了HTML文档遍历、事件处理、动画以及Ajax交互等操作。由John Resig在2006年撰写,...
jQuery in Action Sourcecode
jQuery实战(jQuery in Action) 中文版 PDF 人民邮电出版社 Part 1 of 6
《jQuery 1.11.0与jQuery UI 1.10.4:经典组合的深度解析》 在Web开发领域,jQuery与jQuery UI是两个不可或缺的重要库,它们极大地简化了JavaScript的DOM操作和用户界面设计。本篇将深入探讨jQuery 1.11.0与jQuery ...
jQuery实战(jQuery in Action) 中文版 PDF 人民邮电出版社 Part 2 of 6
【标题】"前端项目-protonet-jquery.inview.zip"涉及的是一个前端开发中的JavaScript库,具体来说是一个基于jQuery的插件,名为"jquery.inview"。这个插件主要用于检测DOM(文档对象模型)元素是否在用户的视口范围...
As using $ in Jquery, we use "O"(Big O) like O(element) “ O”的方法示例如下 O(element).hide(); O(element).show(); O(element).hide(); O(element).fadeIn(time);// You can use time in milisecond or slow ...
从提供的文件信息中,我们可以提取和生成关于《jQuery in Action》第三版相关的知识点。这本书是关于jQuery技术的详细指南,其内容涉及了以下方面: 1. 《jQuery in Action》第三版是针对jQuery框架的一本技术书籍...
1 Introducing jQuery 2 Creating the wrapped element set 3 Bringing pages to life with jQuery 4 Events are where it happens 5 Sprucing up with animations and effects 6 jQuery utility functions 7 ...
jQuery in action jQuery实战 第二部分
jQuery实战(jQuery in Action) 中文版 PDF 人民邮电出版社 Part 6 of 6
在这个“Search Highlight in jQuery”项目中,我们将探讨如何利用JavaScript的jQuery库实现搜索高亮功能,这对于增强用户在网站上查找信息的效率非常有用。 首先,jQuery是一个轻量级、功能丰富的JavaScript库,它...