50个jquery试用代码段++25个实用的jQuery技巧和解决方案
转自:http://www.admin10000.com/document/528.html
(以下还未整理,先看链接地址吧)
本文会给你们展示50个jquery代码片段,这些代码能够给你的javascript项目提供帮助。其中的一些代码段是从jQuery1.4.2才开始支持的做法,另一些则是真正有用的函数或方法,他们能够帮助你又快又好地把事情完成。这些都是我尽量记住的有着最佳性能的代码段,因此如果你发现你任何可以做得更好的地方的话,欢迎把你的版本粘贴在评论中!我希望你在这一文章中能找到有帮助的东西。
0.如何创建嵌套的过滤器:
1
2
3
4
5
//允许你减少集合中的匹配元素的过滤器,
//只剩下那些与给定的选择器匹配的部分。在这种情况下,
//查询删除了任何没(:not)有(:has)
//包含class为“selected”(.selected)的子节点。
.filter(":not(:has(.selected))")
1.如何重用元素搜索
1
2
3
4
5
6
7
8
9
10
varallItems=$("div.item");
varkeepList=$("div#container1div.item");
//现在你可以继续使用这些jQuery对象来工作了。例如,
//基于复选框裁剪“keeplist”,复选框的名称
//符合
<DIV>classnames:
$(formToLookAt+"input:checked").each(function(){
keepList=keepList.filter("."+$(this).attr("name"));
});
</DIV>
2.任何使用has()来检查某个元素是否包含某个类或是元素:
1
2
3
4
//jQuery1.4.*包含了对这一has方法的支持。该方法找出
//某个元素是否包含了其他另一个元素类或是其他任何的
//你正在查找并要在其之上进行操作的东东。
$("input").has(".email").addClass("email_icon");
3.如何使用jQuery来切换样式表
1
2
//找出你希望切换的媒体类型(media-type),然后把href设置成新的样式表。
$('link[media='screen']').attr('href','Alternative.css');
4.如何限制选择范围(基于优化目的):
1
2
3
4
5
6
//尽可能使用标签名来作为类名的前缀,
//这样jQuery就不需要花费更多的时间来搜索
//你想要的元素。还要记住的一点是,
//针对于你的页面上的元素的操作越具体化,
//就越能降低执行和搜索的时间。
varin_stock=$('#shopping_cart_itemsinput.is_in_stock');
1
2
3
4
5
<ulid="shopping_cart_items">
<li><inputtype="radio"value="Item-X"name="item"class="is_in_stock"/>ItemX</li>
<li><inputtype="radio"value="Item-Y"name="item"class="3-5_days"/>ItemY</li>
<li><inputtype="radio"value="Item-Z"name="item"class="unknown"/>ItemZ</li>
</ul>
5.如何正确地使用ToggleClass:
1
2
3
4
5
6
//切换(toggle)类允许你根据某个类的
//是否存在来添加或是删除该类。
//这种情况下有些开发者使用:
a.hasClass('blueButton')?a.removeClass('blueButton'):a.addClass('blueButton');
//toggleClass允许你使用下面的语句来很容易地做到这一点
a.toggleClass('blueButton');
6.如何设置IE特有的功能:
1
2
3
if($.browser.msie){
//InternetExplorer就是个虐待狂
}
7.如何使用jQuery来代替一个元素:
1
$('#thatdiv').replaceWith('fnuh');
8.如何验证某个元素是否为空:
1
2
3
if($('#keks').html()){
//什么都没有找到;
}
9.如何从一个未排序的集合中找出某个元素的索引号
1
2
3
$("ul>li").click(function(){
varindex=$(this).prevAll().length;
});
10.如何把函数绑定到事件上:
1
2
3
$('#foo').bind('click',function(){
alert('Userclickedon"foo."');
});
11.如何追加或是添加html到元素中:
1
$('#lal').append('sometext');
12.在创建元素时,如何使用对象字面量(literal)来定义属性
1
vare=$("",{href:"#",class:"a-classanother-class",title:"..."});
13.如何使用多个属性来进行过滤
1
2
3
//在使用许多相类似的有着不同类型的input元素时,
//这种基于精确度的方法很有用
varelements=$('#someidinput[type=sometype][value=somevalue]').get();
14.如何使用jQuery来预加载图像:
1
2
3
4
5
6
7
jQuery.preloadImages=function(){
for(vari=0;i<arguments.length;i++){
$("<img/>").attr('src',arguments[i]);
}
};
//用法
$.preloadImages('image1.gif','/path/to/image2.png','some/image3.jpg');
15.如何为任何与选择器相匹配的元素设置事件处理程序:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
$('button.someClass').live('click',someFunction);
//注意,在jQuery1.4.2中,delegate和undelegate选项
//被引入代替live,因为它们提供了更好的上下文支持
//例如,就table来说,以前你会用
//.live()
$("table").each(function(){
$("td",this).live("hover",function(){
$(this).toggleClass("hover");
});
});
//现在用
$("table").delegate("td","hover",function(){
$(this).toggleClass("hover");
});
16.如何找到一个已经被选中的option元素:
1
$('#someElement').find('option:selected');
17.如何隐藏一个包含了某个值文本的元素:
1
$("p.value:contains('thetextvalue')").hide();
18.如何自动滚动到页面中的某区域
1
2
3
4
5
6
7
8
jQuery.fn.autoscroll=function(selector){
$('html,body').animate(
{scrollTop:$(selector).offset().top},
500
};
}
//然后像这样来滚动到你希望去到的class/area上。
$('.area_name').autoscroll();
19.如何检测各种浏览器:
1
2
3
4
检测Safari(if($.browser.safari)),
检测IE6及之后版本(if($.browser.msie&&$.browser.version>6)),
检测IE6及之前版本(if($.browser.msie&&$.browser.version<=6)),
检测FireFox2及之后版本(if($.browser.mozilla&&$.browser.version>='1.8'))
20.如何替换串中的词
1
2
varel=$('#id');
el.html(el.html().replace(/word/ig,''));
21.如何禁用右键单击上下文菜单:
1
2
3
$(document).bind('contextmenu',function(e){
returnfalse;
});
22.如何定义一个定制的选择器
1
2
3
4
5
6
7
8
9
$.expr[':'].mycustomselector=function(element,index,meta,stack){
//element-一个DOM元素
//index–栈中的当前循环索引
//meta–有关选择器的元数据
//stack–要循环的所有元素的栈
//如果包含了当前元素就返回true
//如果不包含当前元素就返回false};
//定制选择器的用法:
$('.someClasses:test').doSomething();
23.如何检查某个元素是否存在
1
2
3
if($('#someDiv').length){
//万岁!!!它存在……
}
24.如何使用jQuery来检测右键和左键的鼠标单击两种情况:
1
2
3
4
5
6
7
$("#someelement").live('click',function(e){
if((!$.browser.msie&&e.button==0)||($.browser.msie&&e.button==1)){
alert("LeftMouseButtonClicked");
}elseif(e.button==2){
alert("RightMouseButtonClicked");
}
});
25.如何显示或是删除input域中的默认值
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//这段代码展示了在用户未输入值时,
//如何在文本类型的input域中保留
//一个默认值
wap_val=[];
$(".swap").each(function(i){
wap_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]);
}
});
});
1
<inputtype="text"value="EnterUsernamehere.."class="swap"/>
26.如何在一段时间之后自动隐藏或关闭元素(支持1.4版本):
1
2
3
4
5
6
//这是1.3.2中我们使用setTimeout来实现的方式
setTimeout(function(){
$('.mydiv').hide('blind',{},500)
},5000);
//而这是在1.4中可以使用delay()这一功能来实现的方式(这很像是休眠)
$(".mydiv").delay(5000).hide('blind',{},500);
27.如何把已创建的元素动态地添加到DOM中:
1
2
varnewDiv=$('');
newDiv.attr('id','myNewDiv').appendTo('body');
28.如何限制“Text-Area”域中的字符的个数:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
jQuery.fn.maxLength=function(max){
this.each(function(){
vartype=this.tagName.toLowerCase();
varinputType=this.type?this.type.toLowerCase():null;
if(type=="input"&&inputType=="text"||inputType=="password"){
//ApplythestandardmaxLength
this.maxLength=max;
}
elseif(type=="textarea"){
this.onkeypress=function(e){
varob=e||event;
varkeyCode=ob.keyCode;
varhasSelection=document.selection?document.selection.createRange().text.length>0:this.selectionStart!=this.selectionEnd;
return!(this.value.length>=max&&(keyCode>50||keyCode==32||keyCode==0||keyCode==13)&&!ob.ctrlKey&&!ob.altKey&&!hasSelection);
};
this.onkeyup=function(){
if(this.value.length>max){
this.value=this.value.substring(0,max);
}
};
}
});
};
//用法
$('#mytextarea').maxLength(500);
29.如何为函数创建一个基本的测试
1
2
3
4
5
6
7
8
9
//把测试单独放在模块中
module("ModuleB");
test("someothertest",function(){
//指明测试内部预期有多少要运行的断言
expect(2);
//一个比较断言,相当于JUnit的assertEquals
equals(true,false,"failingtest");
equals(true,true,"passingtest");
});
30.如何在jQuery中克隆一个元素:
1
varcloned=$('#somediv').clone();
31.在jQuery中如何测试某个元素是否可见
1
2
3
if($(element).is(':visible')=='true'){
//该元素是可见的
}
32.如何把一个元素放在屏幕的中心位置:
1
2
3
4
5
6
7
8
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');
returnthis;
}
//这样来使用上面的函数:
$(element).center();
33.如何把有着某个特定名称的所有元素的值都放到一个数组中:
1
2
3
4
vararrInputValues=newArray();
$("input[name='table[]']").each(function(){
arrInputValues.push($(this).val());
});
34.如何从元素中除去html
1
2
3
4
5
6
7
8
9
10
11
(function($){
$.fn.stripHtml=function(){
varregexp=/<("[^"]*"|'[^']*'|[^'">])*>/gi;
this.each(function(){
$(this).html($(this).html().replace(regexp,”"));
});
return$(this);
}
})(jQuery);
//用法:
$('p').stripHtml();
35.如何使用closest来取得父元素:
1
$('#searchBox').closest('div');
36.如何使用Firebug和Firefox来记录jQuery事件日志:
1
2
3
4
5
6
7
8
9
//允许链式日志记录
//用法:
$('#someDiv').hide().log('divhidden').addClass('someClass');
jQuery.log=jQuery.fn.log=function(msg){
if(console){
console.log("%s:%o",msg,this);
}
returnthis;
};
37.如何强制在弹出窗口中打开链接:
1
2
3
4
5
6
7
jQuery('a.popup').live('click',function(){
newwindow=window.open($(this).attr('href'),'','height=200,width=150');
if(window.focus){
newwindow.focus();
}
returnfalse;
});
38.如何强制在新的选项卡中打开链接:
1
2
3
4
5
jQuery('a.newTab').live('click',function(){
newwindow=window.open($(this).href);
jQuery(this).target="_blank";
returnfalse;
});
39.在jQuery中如何使用.siblings()来选择同辈元素
1
2
3
4
5
6
7
8
9
//不这样做
$('#navli').click(function(){
$('#navli').removeClass('active');
$(this).addClass('active');
});
//替代做法是
$('#navli').click(function(){
$(this).addClass('active').siblings().removeClass('active');
});
40.如何切换页面上的所有复选框:
1
2
3
4
5
6
vartog=false;
//或者为true,如果它们在加载时为被选中状态的话
$('a').click(function(){
$("input[type=checkbox]").attr("checked",!tog);
tog=!tog;
});
41.如何基于一些输入文本来过滤一个元素列表:
1
2
3
4
5
//如果元素的值和输入的文本相匹配的话
//该元素将被返回
$('.someClass').filter(function(){
return$(this).attr('value')==$('input#someId').val();
})
42.如何获得鼠标垫光标位置x和y
1
2
3
4
5
$(document).ready(function(){
$(document).mousemove(function(e){
$(’#XY’).html(”XAxis:”+e.pageX+”|YAxis”+e.pageY);
});
});
43.如何把整个的列表元素(ListElement,LI)变成可点击的
1
2
3
4
$("ulli").click(function(){
window.location=$(this).find("a").attr("href");
returnfalse;
});
1
2
3
4
5
6
<ul>
<li><ahref="#">Link1</a></li>
<li><ahref="#">Link2</a></li>
<li><ahref="#">Link3</a></li>
<li><ahref="#">Link4</a></li>
</ul>
44.如何使用jQuery来解析XML(基本的例子):
1
2
3
4
5
6
functionparseXml(xml){
//找到每个Tutorial并打印出author
$(xml).find("Tutorial").each(function(){
$("#output").append($(this).attr("author")+"");
});
}
45.如何检查图像是否已经被完全加载进来
1
2
3
$('#theImage').attr('src','image.jpg').load(function(){
alert('ThisImageHasBeenLoaded');
});
46.如何使用jQuery来为事件指定命名空间:
1
2
3
4
5
6
//事件可以这样绑定命名空间
$('input').bind('blur.validation',function(e){
//...
});
//data方法也接受命名空间
$('input').data('validation.isValid',true);
47.如何检查cookie是否启用
1
2
3
4
5
6
7
vardt=newDate();
dt.setSeconds(dt.getSeconds()+60);
document.cookie="cookietest=1;expires="+dt.toGMTString();
varcookiesEnabled=document.cookie.indexOf("cookietest=")!=-1;
if(!cookiesEnabled){
//没有启用cookie
}
48.如何让cookie过期:
1
2
3
vardate=newDate();
date.setTime(date.getTime()+(x*60*1000));
$.cookie('example','foo',{expires:date});
49.如何使用一个可点击的链接来替换页面中任何的URL
1
2
3
4
5
6
7
8
9
10
11
$.fn.replaceUrl=function(){
varregexp=/((ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?)/gi;
this.each(function(){
$(this).html(
$(this).html().replace(regexp,'<ahref="$1">$1</a>‘)
);
});
return$(this);
}
//用法
$('p').replaceUrl();
//////////////////////////////////////////////////////////////
还没测试,先保存下来;谢谢分享http://www.php100.com/html/webkaifa/javascript/2012/0907/11013.html
1.去除页面的右键菜单
$(document).ready(function(){ $(document).bind("contextmenu", function(e){ return false; }); });
2、搜索输入框文字的消失
当鼠标获得焦点、失去焦点的时候,input输入框文字处理:(没测试)
$(document).ready(function(){$(“input.text1″).val(“Enteryoursearchtexthere”);textFill($(‘input.text1′));});functiontextFill(input){//inputfocustextfunctionvaroriginalvalue=input.val();input.focus(function(){if($.trim(input.val())==originalvalue){input.val(”);}});input.blur(function(){if($.trim(input.val())==”){input.val(originalvalue);}});}
3、新窗口打开页面
$(document).ready(function(){//Example1:Everylinkwillopeninanewwindow$(‘a[href^="http://"]‘).attr(“target”,”_blank”);//Example2:Linkswiththerel=”external”attributewillonlyopeninanewwindow$(‘a[@rel$='external']‘).click(function(){this.target=”_blank”;});});
//howtouse
<ahref=”http://www.opensourcehunter.com”rel=”external”>openlink</a>
4、判断浏览器类型
注意:jQuery1.4中$.support来代替以前的$.browser
$(document).ready(function(){//TargetFirefox2andaboveif($.browser.mozilla&&$.browser.version>=”1.8″){//dosomething}//TargetSafariif($.browser.safari){//dosomething}//TargetChromeif($.browser.chrome){//dosomething}//TargetCaminoif($.browser.camino){//dosomething}//TargetOperaif($.browser.opera){//dosomething}//TargetIE6andbelowif($.browser.msie&&$.browser.version<=6){//dosomething}//TargetanythingaboveIE6if($.browser.msie&&$.browser.version>6){//dosomething}});
5、预加载图片
$(document).ready(function(){jQuery.preloadImages=function(){for(vari=0;i<arguments.length;i++)=”"{=”"jquery(“=”"><img>”).attr(“src”,arguments[i]);}}//howtouse$.preloadImages(“image1.jpg”);});</arguments.length;>
6、轻松切换css样式
$(document).ready(function(){$(“a.Styleswitcher”).click(function(){//swicththeLINKRELattributewiththevalueinARELattribute$(‘link[rel=stylesheet]‘).attr(‘href’,$(this).attr(‘rel’));});
//howtouse
//placethisinyourheader
<linkrel=”stylesheet”href=”default.css”type=”text/css”>//thelinks<ahref=”#”rel=”default.css”>DefaultTheme</a><ahref=”#”class=”Styleswitcher”rel=”red.css”>RedTheme</a><ahref=”#”class=”Styleswitcher”rel=”blue.css”>BlueTheme</a>});
7、高度相等的列
如果您使用两个CSS列,以此来作为他们完全一样的高度
$(document).ready(function(){functionequalHeight(group){tallest=0;group.each(function(){thisHeight=$(this).height();if(thisHeight>tallest){tallest=thisHeight;}});group.height(tallest);}//howtouse$(document).ready(function(){equalHeight($(“.left”));equalHeight($(“.right”));});});
8、简单字体变大缩小
$(document).ready(function(){//Resetthefontsize(backtodefault)varoriginalFontSize=$(‘html’).css(‘font-size’);$(“.resetFont”).click(function(){$(‘html’).css(‘font-size’,originalFontSize);});//Increasethefontsize(biggerfont0$(“.increaseFont”).click(function(){varcurrentFontSize=$(‘html’).css(‘font-size’);varcurrentFontSizeNum=parseFloat(currentFontSize,10);varnewFontSize=currentFontSizeNum*1.2;$(‘html’).css(‘font-size’,newFontSize);returnfalse;});//Decreasethefontsize(smallerfont)$(“.decreaseFont”).click(function(){varcurrentFontSize=$(‘html’).css(‘font-size’);varcurrentFontSizeNum=parseFloat(currentFontSize,10);varnewFontSize=currentFontSizeNum*0.8;$(‘html’).css(‘font-size’,newFontSize);returnfalse;});});
9、返回头部滑动动画
$(‘a[href*=#]‘).click(function(){if(location.pathname.replace(/^\//,”)==this.pathname.replace(/^\//,”)&&location.hostname==this.hostname){var$target=$(this.hash);$target=$target.length&&$target||$(‘[name='+this.hash.slice(1)+']‘);if($target.length){vartargetOffset=$target.offset().top;$(‘html,body’).animate({scrollTop:targetOffset},900);returnfalse;}}});
//howtouse
//placethiswhereyouwanttoscrollto
<aname=”top”></a>//thelink<ahref=”#top”>gototop</a>
10、获取鼠标位置
$().mousemove(function(e){//display the x and y axis values inside the div with the id XY $('#XY').html("X Axis : "+ e.pageX+" | Y Axis "+ e.pageY); });
<divid="XY"></div>
11、判断一个元素是否为空
if($(‘#id’).html()){//dosomething}
12、替换元素
$(‘#id’).replaceWith(‘<div>Ihavebeenreplaced</div>‘);
13、jquerytimer返回函数
$(document).ready(function(){window.setTimeout(function(){//dosomething},1000);});
14、jquery也玩替换
$(document).ready(function(){varel=$(‘#id’);el.html(el.html().replace(/word/ig,”"));});
15、判断元素是否存在
$(document).ready(function(){if($(‘#id’).length){//dosomething}});
16、让div也可以click
$(“div”).click(function(){//gettheurlfromhrefattributeandlaunchtheurlwindow.location=$(this).find(“a”).attr(“href”);returnfalse;});
//howtouse
<div><ahref=”index.html”>home</a></div>
17、使用jquery来判断浏览器大小添加不同的class
$(document).ready(function(){functioncheckWindowSize(){if($(window).width()>1200){$(‘body’).addClass(‘large’);}else{$(‘body’).removeClass(‘large’);}}$(window).resize(checkWindowSize);});
18、几个字符就clone!
varcloned=$(‘#id’).clone()
19、设置div在屏幕中央
$(document).ready(function(){jQuery.fn.center=function(){this.css(“position”,”absolute”);this.css(“top”,($(window).height()-this.height())/2+$(window).scrollTop()+”px”);this.css(“left”,($(window).width()-this.width())/2+$(window).scrollLeft()+”px”);returnthis;}$(“#id”).center();});
20、创建自己的选择器
$(document).ready(function(){$.extend($.expr[':'],{moreThen1000px:function(a){return$(a).width()>1000;}});$(‘.box:moreThen1000px’).click(function(){//creatingasimplejsalertboxalert(‘Theelementthatyouhaveclickedisover1000pixelswide’);});});
21、计算元素的数目
$(document).ready(function(){$(“p”).size();});
22、设置自己的li样式
$(document).ready(function(){$(“ul”).addClass(“Replaced”);$(“ul>li”).prepend(“‒“);//howtouseul.Replaced{list-style:none;}});
23、使用google的主机来加载jquery库
<scriptsrc=”http://www.google.com/jsapi”></script><scripttype=”text/javascript”>google.load(“jquery”,“1.2.6″);google.setOnLoadCallback(function(){//dosomething});</script><scriptsrc=”http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js”type=”text/javascript”></script>//Example2:(thebestandfastestway)<scripttype=”text/javascript”src=”http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js”></script>
24、关闭jquery动画效果
$(document).ready(function(){jQuery.fx.off=true;});
25、使用自己的jquery标识
$(document).ready(function(){var$jq=jQuery.noConflict();$jq(‘#id’).show();});