转自http://www.gbin1.com/technology/jquery/50jquerycodesnippetsforbetterjavascript/index.html
1. 创建一个嵌套的过滤器
.filter(":not(:has(.selected))") //去掉所有不包含class为.selected的元素
2. 重用你的元素查询
var allItems = $("div.item");
var keepList = $("div#container1 div.item");
<div>class names:
$(formToLookAt + " input:checked").each(function() { keepListkeepList = keepList.filter("." + $(this).attr("name")); });
</div>
3. 使用has()来判断一个元素是否包含特定的class或者元素
//jQuery 1.4.* includes support for the has method. This method will find
//if a an element contains a certain other element class or whatever it is
//you are looking for and do anything you want to them.
$("input").has(".email").addClass("email_icon");
4. 使用jQuery切换样式
//Look for the media-type you wish to switch then set the href to your new style sheet
$('link[media='screen']').attr('href', 'Alternative.css');
5. 限制选择的区域
//Where possible, pre-fix your class names with a tag name
//so that jQuery doesn't have to spend more time searching
//for the element you're after. Also remember that anything
//you can do to be more specific about where the element is
//on your page will cut down on execution/search times
var in_stock = $('#shopping_cart_items input.is_in_stock');
<ul id="shopping_cart_items">
<li>
<input value="Item-X" name="item" class="is_in_stock" type="radio"> Item X</li>
<li>
<input value="Item-Y" name="item" class="3-5_days" type="radio"> Item Y</li>
<li>
<input value="Item-Z" name="item" class="unknown" type="radio"> Item Z</li>
</ul>
6. 如何正确使用ToggleClass
//Toggle class allows you to add or remove a class
//from an element depending on the presence of that
//class. Where some developers would use:
a.hasClass('blueButton') ? a.removeClass('blueButton') : a.addClass('blueButton');
//toggleClass allows you to easily do this using
a.toggleClass('blueButton');
7. 设置IE指定的功能
if ($.browser.msie) { // Internet Explorer is a sadist. }
8. 使用jQuery来替换一个元素
$('#thatdiv').replaceWith('fnuh');
9. 验证一个元素是否为空
if ($('#keks').html()) { //Nothing found ;}
10. 在无序的set中查找一个元素的索引
$("ul > li").click(function () {
var index = $(this).prevAll().length;
});
11. 绑定一个函数到一个事件
$('#foo').bind('click', function() {
alert('User clicked on "foo."');
});
12. 添加HTML到一个元素
$('#lal').append('sometext');
13. 创建元素时使用对象来定义属性
var e = $("", { href: "#", class: "a-class another-class", title: "..." });
14. 使用过滤器过滤多属性
//This precision-based approached can be useful when you use
//lots of similar input elements which have different types
var elements = $('#someid input[type=sometype][value=somevalue]').get();
15. 使用jQuery预加载图片
jQuery.preloadImages = function() { for(var i = 0; i').attr('src', arguments[i]); } };
// Usage $.preloadImages('image1.gif', '/path/to/image2.png', 'some/image3.jpg');
16. 设置任何匹配一个选择器的事件处理程序
$('button.someClass').live('click', someFunction);
//Note that in jQuery 1.4.2, the delegate and undelegate options have been
//introduced to replace live as they offer better support for context
//For example, in terms of a table where before you would use..
// .live()
$("table").each(function(){
$("td", this).live("hover", function(){
$(this).toggleClass("hover");
});
});
//Now use..
$("table").delegate("td", "hover", function(){
$(this).toggleClass("hover");
});
17. 找到被选择到的选项(option)元素
$('#someElement').find('option:selected');
18. 隐藏包含特定值的元素
$("p.value:contains('thetextvalue')").hide();
19. 自动的滚动到页面特定区域
jQuery.fn.autoscroll = function(selector) {
$('html,body').animate(
{scrollTop: $(selector).offset().top},
500
);
}
//Then to scroll to the class/area you wish to get to like this:
$('.area_name').autoscroll();
20. 检测各种浏览器
Detect Safari (if( $.browser.safari)),
Detect IE6 and over (if ($.browser.msie && $.browser.version > 6 )),
Detect IE6 and below (if ($.browser.msie && $.browser.version <= 6 )),
Detect FireFox 2 and above (if ($.browser.mozilla && $.browser.version >= '1.8' ))
21. 替换字符串中的单词
var el = $('#id');
el.html(el.html().replace(/word/ig, ''));
22. 关闭右键的菜单
$(document).bind('contextmenu',function(e){ return false; });
23. 定义一个定制的选择器
$.expr[':'].mycustomselector = function(element, index, meta, stack){
// element- is a DOM element
// index - the current loop index in stack
// meta - meta data about your selector
// stack - stack of all elements to loop
// Return true to include current element
// Return false to explude current element
};
// Custom Selector usage:
$('.someClasses:test').doSomething();
24. 判断一个元素是否存在
if ($('#someDiv').length) {//hooray!!! it exists...}
25. 使用jQuery判断鼠标的左右键点击
$("#someelement").live('click', function(e) {
if( (!$.browser.msie && e.button == 0) || ($.browser.msie && e.button == 1) ) {
alert("Left Mouse Button Clicked");
}
else if(e.button == 2)
alert("Right Mouse Button Clicked");
});
原文出处:
分享50个使你成为高级javascript开发者的jQuery的代码开发技巧 - 第一部分
分享50个使你成为高级javascript开发者的jQuery的代码开发技巧 - 第二部分
分享到:
相关推荐
本资源为“精通JavaScript+jQuery电子书+源码-部分1”,这是一个学习JavaScript和jQuery的宝贵资料。JavaScript作为浏览器中的解释型语言,主要用于实现客户端的动态效果、数据验证、页面交互等功能。而jQuery是一个...
本资源“精通JavaScript+jQuery电子书+源码-部分4”是针对这两个技术的深入学习材料,特别是JavaScript的基础知识和jQuery的高级应用。 JavaScript是一种轻量级的解释型编程语言,它是网页开发的标准语言,用于实现...
本资源的“精通JavaScript+jQuery电子书”的第二部分可能涵盖了这两个领域的高级主题,如闭包、模块化开发、jQuery插件开发、异步编程的最佳实践、性能优化策略等。结合提供的源码,学习者可以深入理解理论知识并...
JavaScript是一种广泛应用于网页和...通过阅读“精通JavaScript+jQuery电子书”的第五部分并结合提供的源码,读者不仅可以巩固理论知识,还能提高解决实际问题的能力,为成为JavaScript和jQuery的大师打下坚实基础。
JavaScript和jQuery是Web开发中的两个重要工具,它们极大地简化了网页动态化和交互性设计。JavaScript是一种轻量级的解释型编程语言,广泛应用于浏览器端,用于处理用户输入、操作DOM(文档对象模型)、实现页面动画...
这个名为"JavaScript前端开发案例教程-源代码.rar"的压缩包文件提供了一系列实践案例,帮助开发者深入理解和掌握JavaScript在网页开发中的应用。 首先,JavaScript是一种解释型、弱类型、基于原型的脚本语言,它的...
《JavaScript和jQuery实战手册 原书第3版》是一本...总之,《JavaScript和jQuery实战手册 原书第3版》是一本全面且实用的教程,无论你是JavaScript新手还是寻求进阶的开发者,都能从中受益匪浅,提升你的Web开发技能。
在本教程中,我们将深入探讨Web前端开发的基础知识,涵盖了HTML、CSS、JavaScript以及jQuery这四个核心技术。这些技术是构建交互式、响应式的现代网页所必不可少的。 **HTML(超文本标记语言)** HTML是网页内容的...
- **ISBN**:978-1-847192-50-9 - **官方网站**:[www.packtpub.com](http://www.packtpub.com) #### 六、内容概览 - **第一章:入门篇** - jQuery简介 - 安装与配置 - 基础语法和选择器 - **第二章:核心功能*...
标题 "我的第一个jquery封装方法---jquery" 暗示了这篇博客主要关注的是如何使用jQuery这一流行的JavaScript库来封装自定义的功能。jQuery以其简洁的API和强大的DOM操作能力,成为了前端开发者的常用工具。在这里,...
Web编程基础涵盖了许多关键概念,特别是CSS、JavaScript和jQuery,这些都是构建现代网页不可或缺的组成部分。在Web标准中,我们首先需要理解的是Web标准的核心意义及其重要性。Web标准旨在规范网页设计,确保不同...
在这个压缩包中,我们找到了“精通JavaScript+jQuery_部分5.pdf”和“实例源码”两个文件,它们分别对应了书中的部分内容和相关实例代码。 JavaScript,作为Web开发中的主要脚本语言,其重要性不言而喻。它在浏览器...
1.1.4 编写第一个简单的jQuery应用/3 1.1.5 jQuery程序的代码风格/5 1.2 jQuery的简单应用/7 1.2.1 jQuery访问DOM对象/7 1.2.2 jQuery控制DOM对象/7 1.2.3 jQuery控制页面CSS /9 1.3 本章小结/11 第2章 ...
jQuery是一个JavaScript库,它的出现简化了DOM操作、事件处理、动画和Ajax交互。jQuery的语法简洁,使得开发者可以更快速地编写代码。"精通jQuery"部分可能讲解了如何选择器(如$("#id")和$(".class"))来选取DOM...
jQuery的一个显著特点是链式操作,一个jQuery对象可以连续调用多个方法,这使得代码更加紧凑,如 `$("#element").addClass("active").slideDown();` 7. **插件扩展(Plugins)** jQuery的生态体系强大,拥有无数...
在"jQ学习第一季"、"jQ学习第二季"、"jQ学习第三季"的文件中,你可以找到更具体和丰富的实例,涵盖更多高级技巧和最佳实践。通过实践这些实例,你将能够更加熟练地运用jQuery来实现网页的各种动态效果和交互功能,...
- **1997年**:ECMA-262成为JavaScript的第一个国际标准。 - **2003年**:James等人基于XMLHttpRequest创建了一个Ajax库。 - **2005年**:谷歌推出了使用Ajax技术的搜索引擎。 #### 七、CSS介绍 **CSS(Cascading ...
在"JS/JQuery-第7章上机练习.zip"这个压缩包中,我们可以推测这是一份关于JavaScript和JQuery实践训练的资料,尤其聚焦于第七章的内容。通常,这样的练习会帮助开发者巩固和提升在实际项目中的应用能力。 1. **选择...
【标题】"artech-javascript-jquery-11"揭示了这一主题主要关注的是JavaScript库jQuery的第11部分。jQuery是一个广泛使用的JavaScript库,它极大地简化了HTML文档遍历、事件处理、动画以及Ajax交互等任务。在这个...