`

50个JQuery代码技巧让你变成js高手(1)

 
阅读更多

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 &amp;&amp; $.browser.version &gt; 6 )),
Detect IE6 and below (if ($.browser.msie &amp;&amp; $.browser.version &lt;= 6 )),
Detect FireFox 2 and above (if ($.browser.mozilla &amp;&amp; $.browser.version &gt;= '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 &amp;&amp; e.button == 0) || ($.browser.msie &amp;&amp; e.button == 1) ) {
        alert("Left Mouse Button Clicked");
    }
    else if(e.button == 2)
        alert("Right Mouse Button Clicked");
});







26. 显示或者删除输入框的缺省值

//This snippet will show you how to keep a default value //in a text input field for when a user hasn't entered in //a value to replace it swap_val = []; $(".swap").each(function(i){ swap_val[i] = $(this).val(); $(this).focusin(function(){ if ($(this).val() == swap_val[i]) { $(this).val(""); } }).focusout(function(){ if ($.trim($(this).val()) == "") { $(this).val(swap_val[i]); } }); }); <INPUT class=swap value="Enter Username here.." type=text>

27. 指定时间后自动隐藏或者关闭元素(1.4支持)

//Here's how we used to do it in 1.3.2 using setTimeout setTimeout(function() { $('.mydiv').hide('blind', {}, 500) }, 5000); //And here's how you can do it with 1.4 using the delay() feature (this is a lot like sleep) $(".mydiv").delay(5000).hide('blind', {}, 500);

28. 动态创建元素到DOM

var newgbin1Div = $(''); newgbin1Div.attr('id','gbin1.com').appendTo('body');

29. 限制textarea的字符数量

jQuery.fn.maxLength = function(max){ this.each(function(){ var type = this.tagName.toLowerCase(); var inputType = this.type? this.type.toLowerCase() : null; if(type == "input" &amp;&amp; inputType == "text" || inputType == "password"){ //Apply the standard maxLength this.maxLength = max; } else if(type == "textarea"){ this.onkeypress = function(e){ var ob = e || event; var keyCode = ob.keyCode; var hasSelection = document.selection? document.selection.createRange().text.length &gt; 0 : this.selectionStart != this.selectionEnd; return !(this.value.length &gt;= max &amp;&amp; (keyCode &gt; 50 || keyCode == 32 || keyCode == 0 || keyCode == 13) &amp;&amp; !ob.ctrlKey &amp;&amp; !ob.altKey &amp;&amp; !hasSelection); }; this.onkeyup = function(){ if(this.value.length &gt; max){ this.value = this.value.substring(0,max); } }; } }); }; //Usage: $('#gbin1textarea').maxLength(500);

30. 为函数创建一个基本测试用例

//Separate tests into modules. module("Module B"); test("some other gbin1.com test", function() { //Specify how many assertions are expected to run within a test. expect(2); //A comparison assertion, equivalent to JUnit's assertEquals. equals( true, false, "failing test" ); equals( true, true, "passing test" ); });

31. 使用jQuery克隆元素

var cloned = $('#gbin1div').clone();

32. 测试一个元素在jQuery中是否可见

if($(element).is(':visible') == 'true') { //The element is Visible }

33. 元素屏幕居中

jQuery.fn.center = function () { this.css('position','absolute'); this.css('top', ( $(window).height() - this.height() ) / +$(window).scrollTop() + 'px'); this.css('left', ( $(window).width() - this.width() ) / 2+$(window).scrollLeft() + 'px');return this; } //Use the above function as: $('#gbin1div').center();

34. 使用特定名字的元素对应的值生成一个数组

var arrInputValues = new Array(); $("input[name='table[]']").each(function(){ arrInputValues.push($(this).val()); });

35. 剔除元素中的HTML

(function($) { $.fn.stripHtml = function() { var regexp = /&lt;("[^"]*"|'[^']*'|[^'"&gt;])*&gt;/gi; this.each(function() { $(this).html( $(this).html().replace(regexp,"") ); }); return $(this); } })(jQuery); //usage: $('p').stripHtml();

36. 使用closest来得到父元素

$('#searchBox').closest('div');

37. 使用firebug来记录jQuery事件

// Allows chainable logging // Usage: $('#someDiv').hide().log('div hidden').addClass('someClass'); jQuery.log = jQuery.fn.log = function (msg) { if (console){ console.log("%s: %o", msg, this); } return this; };

38. 点击链接强制弹出新窗口

jQuery('a.popup').live('click', function(){ newwindow=window.open($(this).attr('href'),'','height=200,width=150'); if (window.focus) {newwindow.focus()} return false; });

39. 点击链接强制打开新标签页

jQuery('a.newTab').live('click', function(){ newwindow=window.open($(this).href); jQuery(this).target = "_blank"; return false; });

40. 使用siblings()来处理同类元素

// Rather than doing this $('#nav li').click(function(){ $('#nav li').removeClass('active'); $(this).addClass('active'); }); // Do this instead $('#nav li').click(function(){ $(this).addClass('active') .siblings().removeClass('active'); });

41. 选择或者不选页面上全部复选框

var tog = false; // or true if they are checked on load $('a').click(function() { $("input[type=checkbox]").attr("checked",!tog); tog = !tog; });

42. 基于输入文字过滤页面元素

//If the value of the element matches that of the entered text //it will be returned $('.gbin1Class').filter(function() { return $(this).attr('value') == $('input#gbin1Id').val() ; })

43. 取得鼠标的X和Y坐标

$(document).mousemove(function(e){ $(document).ready(function() { $().mousemove(function(e){ $('#XY').html("Gbin1 X Axis : " + e.pageX + " | Gbin1 Y Axis " + e.pageY); }); });

44. 使得整个列表元素(LI)可点击

$("ul li").click(function(){ window.location=$(this).find("a").attr("href"); return false; }); <UL> <LI><A href="#">GBin1 Link 1</A></LI> <LI><A href="#">GBin1 Link 2</A></LI> <LI><A href="#">GBin1 Link 3</A></LI> <LI><A href="#">GBin1 Link 4</A></LI> </UL>

45. 使用jQuery来解析XML

function parseXml(xml) { //find every Tutorial and print the author $(xml).find("Tutorial").each(function() { $("#output").append($(this).attr("author") + ""); }); }

46. 判断一个图片是否加载完全

$('#theGBin1Image').attr('src', 'image.jpg').load(function() { alert('This Image Has Been Loaded'); });

47. 使用jQuery命名事件

//Events can be namespaced like this $('input').bind('blur.validation', function(e){ // ... }); //The data method also accept namespaces $('input').data('validation.isValid', true);

48. 判断cookie是否激活或者关闭

var dt = new Date(); dt.setSeconds(dt.getSeconds() + 60); document.cookie = "cookietest=1; expires=" + dt.toGMTString(); var cookiesEnabled = document.cookie.indexOf("cookietest=") != -1; if(!cookiesEnabled) { //cookies have not been enabled }

49.  强制过期cookie

var date = new Date(); date.setTime(date.getTime() + (x * 60 * 1000)); $.cookie('example', 'foo', { expires: date });

50. 使用一个可点击的链接替换页面中所有URL

(转载注明出处:[url=http://www.d9732.com]澳门博彩[/url][url=http://www.tdtf.org]易博网[/url])

$.fn.replaceUrl = function() { var regexp = /((ftp|http|https)://(w+:{0,1}w*@)?(S+)(:[0-9]+)?(/|/([w#!:.?+=&amp;%@!-/]))?)/gi; this.each(function() { $(this).html( $(this).html().replace(regexp,'<A href="$1">$1</A>') ); }); return $(this); } //usage $('#GBin1div').replaceUrl();



  


  
分享到:
评论

相关推荐

    基于springboot共享经济背景下校园闲置物品交易平台源码数据库文档.zip

    基于springboot共享经济背景下校园闲置物品交易平台源码数据库文档.zip

    基于WoodandBerry1和非耦合控制WoodandBerry2来实现控制木材和浆果蒸馏柱控制Simulink仿真.rar

    1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。

    emcopy042002.zip

    emcopy042002.zip

    (源码)基于Python的遥感图像语义分割系统.zip

    # 基于Python的遥感图像语义分割系统 ## 项目简介 本项目是一个基于Python的遥感图像语义分割系统,专注于处理和分析遥感图像数据。系统采用HRNet(High Resolution Network)架构,结合多尺度训练和翻转增强等技术,实现对图像的像素级分类,从而完成语义分割任务。 ## 项目的主要特性和功能 1. HRNet架构利用HRNet架构并行处理不同分辨率的特征,有效捕获图像细节和上下文信息,提升分割精度。 2. 多尺度训练支持多尺度训练,通过不同尺度的缩放和裁剪,增加数据多样性,提高模型泛化能力。 3. 翻转增强在训练过程中对图像进行随机翻转,增加数据集多样性,提高模型鲁棒性。 4. 预处理和增强提供多种预处理和增强技术,如随机色调、饱和度、亮度调整,以及平移、缩放、旋转等变换,用于扩充数据集和增强模型性能。

    (源码)基于Spring Boot的博客管理系统.zip

    # 基于Spring Boot的博客管理系统 ## 项目简介 本项目是一个基于Spring Boot框架的博客管理系统,旨在提供一个简单易用的博客平台,支持用户登录认证、文章管理、分类管理、标签管理等功能。项目主要用于学习和实践Spring Boot及相关技术,特别是登录认证和权限管理方面的内容。 ## 项目的主要特性和功能 1. 用户管理 用户注册、登录、信息更新。 用户权限管理,支持超级管理员和普通用户角色。 2. 文章管理 文章的创建、编辑、删除、恢复。 文章的分类和标签管理。 文章的发布状态管理(草稿、已发布、回收站)。 3. 分类管理 分类的添加、删除、更新。 分类信息的查询。 4. 标签管理 标签的添加、删除、更新。 标签与文章的关联管理。 5. 数据统计 文章的浏览量统计。 分类和标签的数据统计。

    基于springboot的中医院问诊系统源码数据库文档.zip

    基于springboot的中医院问诊系统源码数据库文档.zip

    基于SpringBoot+Vue的校园篮球联赛管理系统源码数据库文档.zip

    基于SpringBoot+Vue的校园篮球联赛管理系统源码数据库文档.zip

    基于springboot框架药品购买系统源码数据库文档.zip

    基于springboot框架药品购买系统源码数据库文档.zip

    人工智能开发项目深度学习项目源码带指导视频一起来动动手

    人工智能开发项目深度学习项目源码带指导视频一起来动动手提取方式是百度网盘分享地址

    (源码)基于Spring Boot和Vue的基金管理系统.zip

    # 基于Spring Boot和Vue的基金管理系统 ## 项目简介 本项目是一个基于Spring Boot和Vue框架的基金管理系统,旨在提供一个全面的基金管理解决方案。系统涵盖了基金的各个方面,包括账户管理、交易记录、报表生成、用户权限管理等功能。通过前后端分离的架构,系统能够高效地处理大量数据,并提供友好的用户界面。 ## 项目的主要特性和功能 ### 1. 用户管理 用户注册与登录支持用户注册和登录功能,确保用户身份的安全性。 用户权限管理根据用户角色分配不同的权限,确保系统的安全性。 ### 2. 账户管理 基金账户创建与管理支持创建和管理多个基金账户,记录账户的余额、交易记录等信息。 账户冻结与解冻支持账户的冻结和解冻操作,确保账户的安全性。 ### 3. 交易管理 交易记录管理记录所有的交易操作,包括买入、卖出、转账等。 交易报表生成自动生成交易报表,方便用户查看和分析交易情况。 ### 4. 报表与统计

    springboot316社团服务系统的设计与实现.zip

    论文描述:该论文研究了某一特定领域的问题,并提出了新的解决方案。论文首先对问题进行了详细的分析和理解,并对已有的研究成果进行了综述。然后,论文提出了一种全新的解决方案,包括算法、模型或方法。在整个研究过程中,论文使用了合适的实验设计和数据集,并进行了充分的实验验证。最后,论文对解决方案的性能进行了全面的评估和分析,并提出了进一步的研究方向。 源码内容描述:该源码实现了论文中提出的新的解决方案。源码中包含了算法、模型或方法的具体实现代码,以及相关的数据预处理、实验设计和性能评估代码。源码中还包括了合适的注释和文档,以方便其他研究者理解和使用。源码的实现应该具有可读性、可维护性和高效性,并能够复现论文中的实验结果。此外,源码还应该尽可能具有通用性,以便在其他类似问题上进行进一步的应用和扩展。

    (源码)基于Arduino的蒸发冷却系统.zip

    # 基于Arduino的蒸发冷却系统 ## 项目简介 本项目旨在创建一个蒸发冷却系统(即沼泽冷却器),这是一种在干燥炎热气候下提供能源效率替代空调的系统。该系统使用Arduino 2560和各种传感器来监控和控制冷却过程。 ## 项目的主要特性和功能 水位监控通过水位传感器监控水箱中的水位,并在水位过低时发出警报。 温度和湿度显示在LCD屏幕上显示空气温度和湿度。 风扇控制根据温度范围控制风扇电机。 系统开关通过用户按钮控制系统的开关。 日志记录记录电机激活和停用的时间和日期。 ## 安装使用步骤 2. 硬件连接按照项目文档中的电路图连接所有硬件组件,包括水位传感器、LCD显示屏、实时时钟模块、DHT11传感器和风扇电机。 3. 上传代码将下载的代码上传到Arduino 2560开发板。 4. 启动系统通过用户按钮启动系统,观察LCD屏幕上的温度和湿度显示,并监控水位传感器的状态。

    基于springboot的社区快递上门服务系统源码数据库文档.zip

    基于springboot的社区快递上门服务系统源码数据库文档.zip

    【多智能体任务分配】基于共识的捆绑算法CBBA实现远程太空船RPO 规划任务研究附Matlab代码.rar

    1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。

    基于RNN生成文本(自然语言处理)

    此代码基于PTB数据集,实现了一个具有一定泛化能力的语言模型。可指定初始单词和生成单词数生成文本

    【故障诊断】基于改进的稀疏周期组Lasso的轴承故障诊断Matlab代码.rar

    1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。

    IEEE 14节点标准模型的柴油发电机、光伏模型、电池储能系统、电弧炉等非线性负载复合微电网模型Simulink仿真.rar

    1.版本:matlab2014/2019a/2024a 2.附赠案例数据可直接运行matlab程序。 3.代码特点:参数化编程、参数可方便更改、代码编程思路清晰、注释明细。 4.适用对象:计算机,电子信息工程、数学等专业的大学生课程设计、期末大作业和毕业设计。

    JavaScript:模块化编程与CommonJS技术详解

    内容概要:本文详细介绍了JavaScript的模块化编程及其在CommonJS中的实现方法。首先解释了模块化编程的重要性和在JavaScript中的应用,接着具体讲述了CommonJS的规范和实现细节,包括模块的定义、导出、导入及缓存机制。文中还包括了大量的代码示例,帮助读者更好地理解和实践模块化编程的技术要点。此外,还讨论了异步和动态加载模块的方法以及处理循环依赖的最佳实践。 适合人群:具备一定JavaScript基础的开发人员,尤其是对模块化编程和Node.js感兴趣的开发者。 使用场景及目标:帮助开发者掌握JavaScript模块化编程的核心概念和技术,提升代码的可读性、可维护性和可复用性,特别是在大规模项目中。 阅读建议:建议读者跟随文章中的示例逐步实践,深入理解CommonJS规范及其在实际项目中的应用,同时关注ES模块与CommonJS的区别和各自的优缺点。

    基于 Van.js 的简单前端路由组件(支持字符串和正则表达式匹配等).zip

    一个基于 Van.js 的简单前端路由组件。它支持字符串和正则表达式匹配,可以设置页面显示延迟,并且可以配置首次路由匹配(onFirst)和后续路由匹配(onLoad)的事件。该项目使用 TypeScript 实现,提供了简单的 API。 主要功能点 支持字符串和正则表达式匹配 支持设置页面显示延迟 支持配置首次路由匹配(onFirst)和后续路由匹配(onLoad)的事件 使用 TypeScript 实现 提供简单的 API 技术栈 Van.js TypeScript

    (源码)基于Spring Boot和Vue的ELADMIN后台管理系统.zip

    # 基于Spring Boot和Vue的ELADMIN后台管理系统 ## 项目简介 ELADMIN是一个基于Spring Boot 2.1.0、Spring Boot Jpa、JWT、Spring Security、Redis、Vue的前后端分离的后台管理系统。该项目提供了丰富的功能和特性,适用于各种企业级应用的开发。 ## 项目的主要特性和功能 技术栈使用最新技术栈,社区资源丰富。 高效率开发代码生成器可一键生成前后端代码。 数据字典支持数据字典,方便对一些状态进行管理。 接口限流支持接口限流,避免恶意请求导致服务层压力过大。 权限管理支持接口级别的功能权限与数据权限,可自定义操作。 自定义权限注解自定义权限注解与匿名接口注解,可快速对接口拦截与放行。 前端组件封装对一些常用的前端组件进行封装,如表格数据请求、数据字典等。 统一异常处理前后端统一异常拦截处理,统一输出异常,避免繁琐的判断。

Global site tag (gtag.js) - Google Analytics