随笔记录34 jQuery优化

1、总是从#id选择器来继承
2、在class前面使用tag
jQuery中第二快的选择器就是tag选择器(如(‘#nslForm input.on’);
3、采用find()
如:(‘#pageBody .testdiv’)较慢
4、使用ready事件的简写
最优: (document).onready() 、$(document).ready(function(){})
4、压缩js代码
5、如可以,使用最新版jquery版本

你可能感兴趣的:(随笔记录34 jQuery优化)