标签:
1:加载Jquery
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script> <script>window.jQuery || document.write(‘<script src="js/jquery-1.11.0.min.js" type="text/javascript"><\/script>‘)</script>
可以使用CDN来加载jquery,因为他免费的帮你托管文件
2:变量的使用
jquery使用变量前最好加上$,最好将jquery选择器返回的内容放进一个变量中,便于重用
var $products = $("div .products")
3:选择器的使用
尽量使用ID选择器,因为其原理是使用JS原生的document.getElmentById(),所以速度快于其他选择器。
这里只列出三点注意的地方,更多http://web.jobbole.com/83277/
标签:
原文地址:http://my.oschina.net/isxiaoge/blog/499915