jQuery中的100个技巧汇总
1.当document文档就绪时执行javascript代码。
我们为什么使用jquery库呢?原因之一就在于我们可以使jquery代码在各种不同的浏览器和存在bug的浏览器上完美运行。
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script> <script> // different ways to achieve the document ready event // with jquery $(document).ready(function(){ /* ... */}); // short jquery $(function(){ /* ... */}); // without jquery (doesn't work in older ie versions) document.addeventlistener('domcontentloaded',function(){ // your code goes here }); // the trickshot (works everywhere): r(function(){ alert('dom ready!'); }) function r(f){/in/.test(document.readystate)?settimeout('r('+f+')',9):f()} </script>
2.使用route。
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script> <script> var route = { _routes : {}, // the routes will be stored here add : function(url, action){ this._routes[url] = action; }, run : function(){ jquery.each(this._routes, function(pattern){ if(location.href.match(pattern)){ // "this" points to the function to be executed this(); } }); } } // will execute only on this page: route.add('002.html', function(){ alert('hello there!') }); route.add('products.html', function(){ alert("this won't be executed :(") }); // you can even use regex-es: route.add('.*.html', function(){ alert('this is using a regex!') }); route.run(); </script>
3.使用javascript中的and技巧。
使用&&操作符的特点是如果操作符左边的表达式是false,那么它就不会再判断操作符右边的表达式了。所以:
// instead of writing this: if($('#elem').length){ // do something } // you can write this: $('#elem').length && log("doing something");
4. is()方法比你想象的更为强大。
下面举几个例子,我们先写一个id为elem的div。js代码如下:
// first, cache the element into a variable: var elem = $('#elem'); // is this a div? elem.is('div') && log("it's a div"); // does it have the bigbox class? elem.is('.bigbox') && log("it has the bigbox class!"); // is it visible? (we are hiding it in this example) elem.is(':not(:visible)') && log("it is hidden!"); // animating elem.animate({'width':200},1); // is it animated? elem.is(':animated') && log("it is animated!");
其中判断是否为动画我觉得非常不错。
5.判断你的网页一共有多少元素。
通过使用$("*").length();方法可以判断网页的元素数量。
// how many elements does your page have? log('this page has ' + $('*').length + ' elements!');
6.使用length()属性很笨重,下面我们使用exist()方法。
/ old way log($('#elem').length == 1 ? "exists!" : "doesn't exist!"); // trickshot: jquery.fn.exists = function(){ return this.length > 0; } log($('#elem').exists() ? "exists!" : "doesn't exist!");
7.jquery方法$()实际上是拥有两个参数的,你知道第二个参数的作用吗?
// select an element. the second argument is context to limit the search // you can use a selector, jquery object or dom element $('li','#firstlist').each(function(){ log($(this).html()); }); log('-----'); // create an element. the second argument is an // object with jquery methods to be called var div = $('<div>',{ "class": "bigblue", "css": { "background-color":"purple" }, "width" : 20, "height": 20, "animate" : { // you can use any jquery method as a property! "width": 200, "height":50 } }); div.appendto('#result');
8.使用jquery我们可以判断一个链接是否是外部的,并来添加一个icon在非外部链接中,且确定打开方式。
这里用到了hostname属性。
<ul id="links"> <li><a href="007.html">the previous tip</a></li> <li><a href="./009.html">the next tip</a></li> <li><a href="http://www.google.com/">google</a></li> </ul> // loop through all the links $('#links a').each(function(){ if(this.hostname != location.hostname){ // the link is external $(this).append('<img src="assets/img/external.png" />') .attr('target','_blank'); } });
9.jquery中的end()方法可以使你的jquery链更加高效。
<ul id="meals"> <li> <ul class="breakfast"> <li class="eggs">no</li> <li class="toast">no</li> <li class="juice">no</li> </ul> </li> </ul> // here is how it is used: var breakfast = $('#meals .breakfast'); breakfast.find('.eggs').text('yes') .end() // back to breakfast .find('.toast').text('yes') .end() .find('.juice').toggleclass('juice coffee').text('yes'); breakfast.find('li').each(function(){ log(this.classname + ': ' + this.textcontent) });
10.也许你希望你的web 应用感觉更像原生的,那么你可以阻止contextmenu默认事件。
<script> // prevent right clicking on this page $(function(){ $(document).on("contextmenu",function(e){ e.preventdefault(); }); }); </script>
11.一些站点可能会使你的网页在一个bar下面,即我们所看到在下面的网页是iframe标签中的,我们可以这样解决。
// here is how it is used: if(window != window.top){ window.top.location = window.location; } else{ alert('this page is not displayed in a frame. open 011.html to see it in action.'); }
12.你的内联样式表并不是被设置为不可改变的,如下:
// make the stylesheet visible and editable $('#regular-style-block').css({'display':'block', 'white-space':'pre'}) .attr('contenteditable',true);
这样即可改变内联样式了。
13.有时候我们不希望网页的某一部分内容被选择比如复制粘贴这种事情,我们可以这么做:
<p class="descr">in certain situations you might want to prevent text on the page from being selectable. try selecting this text and hit view source to see how it is done.</p> <script> // prevent text from being selected $(function(){ $('p.descr').attr('unselectable', 'on') .css('user-select', 'none') .on('selectstart', false); }); </script>
这样,内容就不能被选择啦。
14.从cdn中引入jquery,这样的方法可以提高我们网站的性能,并且引入最新的版本也是一个不错的主意。
下面会介绍四种不同的方法。
<!-- case 1 - requesting jquery from the official cdn --> <script src="http://code.jquery.com/jquery-1.10.2.min.js"></script> <!-- case 2 - requesting jquery from google's cdn (notice the protocol) --> <!-- <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> --> <!-- case 3 - requesting the latest minor 1.8.x version (only cached for an hour) --> <!-- <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10/jquery.min.js"></script> --> <!-- case 4 - requesting the absolute latest jquery version (use with caution) --> <!-- <script src="http://code.jquery.com/jquery.min.js"></script> -->
15.保证最小的dom操作。
我们知道js操作dom是非常浪费资源的,我们可以看看下面的例子。
code // bad //var elem = $('#elem'); //for(var i = 0; i < 100; i++){ // elem.append('<li>element '+i+'</li>'); //} // good var elem = $('#elem'), arr = []; for(var i = 0; i < 100; i++){ arr.push('<li>element '+i+'</li>'); } elem.append(arr.join(''));
16.更方便的分解url。
也许你会使用正则表达式来解析url,但这绝对不是一种好的方法,我们可以借用a标签来实现它。
// you want to parse this address into parts: var url = 'http://tutorialzine.com/books/jquery-trickshots?trick=12#comments'; // the trickshot: var a = $('<a>',{ href: url }); log('host name: ' + a.prop('hostname')); log('path: ' + a.prop('pathname')); log('query: ' + a.prop('search')); log('protocol: ' + a.prop('protocol')); log('hash: ' + a.prop('hash'));
17.不要害怕使用vanilla.js。
jquery背负的太多,这便是原因,你可以用一般的js。
// print the ids of all li items $('#colors li').each(function(){ // access the id directly, instead // of using jquery's $(this).attr('id') log(this.id); });
18.最优化你的选择器
// let's try some benchmarks! var iterations = 10000, i; timer('fancy'); for(i=0; i < iterations; i++){ // this falls back to a slow javascript dom traversal $('#peanutbutter div:first'); } timer_result('fancy'); timer('parent-child'); for(i=0; i < iterations; i++){ // better, but still slow $('#peanutbutter div'); } timer_result('parent-child'); timer('parent-child by class'); for(i=0; i < iterations; i++){ // some browsers are a bit faster on this one $('#peanutbutter .jellytime')
19.缓存你的selector。
// bad: // $('#pancakes li').eq(0).remove(); // $('#pancakes li').eq(1).remove(); // $('#pancakes li').eq(2).remove(); // good: var pancakes = $('#pancakes li'); pancakes.eq(0).remove(); pancakes.eq(1).remove(); pancakes.eq(2).remove(); // alternatively: // pancakes.eq(0).remove().end() // .eq(1).remove().end() // .eq(2).remove().end();
20.对于重复的函数只定义一次
如果你追求代码的更高性能,那么当你设置事件监听程序时必须小心,只定义一次函数然后把它的名字作为事件处理程序传递是不错的方法。
$(document).ready(function(){ function showmenu(){ alert('showing menu!'); // doing something complex here } $('#menubutton').click(showmenu); $('#menulink').click(showmenu); });
21.像对待数组一样地对待jquery对象
由于jquery对象有index值和长度,所以这意味着我们可以把对象当作普通的数组对待。这样也会有更好地性能。
var arr = $('li'), iterations = 100000; timer('native loop'); for(var z=0;z<iterations;z++){ var length = arr.length; for(var i=0; i < length; i++){ arr[i]; } } timer_result('native loop'); timer('jquery each'); for(z=0;z<iterations;z++){ arr.each(function(i, val) { this; }); } timer_result('jquery each');
未完待续...
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持!