jQuery 开发者应该注意的9个错误


Posted in Javascript onMay 03, 2012

jQuery is so easy to use that sometimes we just forget that it's not CSS. While using CSS, we don't have to give much thought to performance, because it's so fast that it's not worth the effort to optimize it. But when it comes to the real world, jQuery can drive developers crazy with performance issues. Sometimes you lose precious milliseconds without even noticing it. Also, it's so easy to forget about some functions and we keep using the old (and not-so-good) ones.

Let's take a look at a few of the most-common-and-easiest-to-fix mistakes while using jQuery in your projects.

1. You aren't using the latest jQuery version
Each version update means higher performance and several bug fixes. The current stable release is 1.7.2, and I'm pretty sure you know about plenty of sites developed using 1.6 and below. Ok, ok, you can't just update every old site for every jQuery update (unless your client is paying you to do so) but you should at least start using it for your new projects. So, forget about this local copy and just grab the latest release every time you start a new project.

2. You aren't using a CDN-hosted copy of jQuery
How many unique visitors you`ve got last month? I bet the number is still under 1 billion, right?
So you'd better use Google's copy of jQuery instead of yours. If your user still has the cached file of Google's website (or from many other sites that uses its CDN) his browser will just get the cached version, improving a lot your website's performance. You can use it by copying & pasting this HTML:

<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>

3. You aren't using a fallback for CDN version
I know I said Google is awesome and stuff, but they can fail. So, every time you rely upon external sources, make sure you have a local fallback. I've seen this snippet in the HTML5 boilerplate source code and just found it amazing. You should use it too:

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/libs/jquery-1.7.2.min.js"><\/script>')</script>

4. You aren't chaining stuff
While doing common operations, you don't need to call the element every time you want to manipulate it. If you're doing several manipulations in a row, use chaining, so jQuery won't need to get the element twice.

Instead of this:

$(“#mydiv”).hide();
$(“#mydiv”).css(“padding-left”, “50px”);

Use this:

$(“#mydiv”).hide().css(“padding-left”, “50px”);

5. You aren't caching stuff
This is one of the most important performance tips. If you'll call an element at least twice, you should cache it. Caching is just saving the jQuery selector in a variable, so when you need to call it again you'll just reference the variable and jQuery won't need to search the whole DOM tree again to find your element.

/* you can use it this way because almost every jQuery function returns
the element, so $mydiv will be equal to $(“#mydiv”); also it's good to
use the $mydiv so you know it's a jQuery caching var */

var $mydiv = $(“#mydiv”).hide();
[.. lot of cool stuff going on here …]
$mydiv.show();

6. You aren't using pure js
Specially for attributes modification, we have several built in methods to get stuff done with pure javascript. You can even “convert” jQuery objects back to DOM nodes to use them with simpler methods, like this:

$mydiv[0].setAttribute('class', 'awesome'); //you can convert jQuery objects to DOM nodes using $jqObj[0]

7. You aren't checking plugins before including in your site
You know, jQuery is not the hardest thing in the world to code. But good JS (and jQuery), that is pretty hard. The bad news is that while you aren't a good programmer, you'll have to rely on trial and error to find out what is good and what isn't. A few points you must be aware of while including a plugin in your project:

File Size (the easiest to check!) ? if a tooltip plugin is bigger than jQuery source, something is really wrong;
Performance ? You can try it with firebug and others. They give you easy to understand charts to you'll know when something is out of place;
Cross-browsing ? Test, at least on IE7, but Chrome, Firefox, Safari and Opera are good ones to try also
Mobile ? Don't forget that everything is getting mobile. See if the plugin works, or at least doesn't crash your mobile browser
8. You aren't open to remove jQuery
Sometimes it's just better to remove it and use simple ol' CSS. Actually if you want, for instance, an opacity hover, or transition can be done with CSS along with good browser support. And there's no way jQuery can beat plain CSS.

9. You are using jQuery for server side tasks
I know that masking and validating are good, but don't rely just on jQuery for those. You need to recheck everything on the server side. That is especially important if you are thinking about using AJAX. Also, make sure everything will work with JS disabled.

So, it's your turn!

Do you have anything you think should be on this list? Share your thoughts!

About the Author

Javascript 相关文章推荐
JS之小练习代码
Oct 12 Javascript
40个有创意的jQuery图片和内容滑动及弹出插件收藏集之三
Jan 03 Javascript
JS中prototype关键字的功能介绍及使用示例
Jul 21 Javascript
Jquery遍历节点的方法小集
Jan 22 Javascript
javascript实现添加附件功能的方法
Nov 18 Javascript
JavaScript中的Object对象学习教程
May 20 Javascript
jQuery模拟淘宝购物车功能
Feb 27 Javascript
javascript实现延时显示提示框效果
Jun 01 Javascript
关于Vue Webpack2单元测试示例详解
Aug 14 Javascript
什么是Vue.js框架 为什么选择它?
Oct 17 Javascript
vue实现提示保存后退出的方法
Mar 15 Javascript
js之切换全屏和退出全屏实现代码实例
Sep 09 Javascript
jQuery Ajax请求状态管理器打包
May 03 #Javascript
学习从实践开始之jQuery插件开发 菜单插件开发
May 03 #Javascript
Firefox中beforeunload事件的实现缺陷浅析
May 03 #Javascript
统计jQuery中各字符串出现次数的工具
May 03 #Javascript
JQuery插件Style定制化方法的分析与比较
May 03 #Javascript
拉动滚动条加载数据的jquery代码
May 03 #Javascript
基于jquery的固定表头和列头的代码
May 03 #Javascript
You might like
PHP 组件化编程技巧
2009/06/06 PHP
php中数字、字符与对象判断函数用法实例
2014/11/26 PHP
深入讲解PHP Session及如何保持其不过期的方法
2015/08/18 PHP
iOS+PHP注册登录系统 PHP部分(上)
2016/12/26 PHP
Yii2框架可逆加密简单实现方法
2017/08/25 PHP
HR vs ForZe BO3 第一场 2.13
2021/03/10 DOTA
jquery学习笔记二 实现可编辑的表格
2010/04/09 Javascript
setInterval()和setTimeout()的用法和区别示例介绍
2013/11/17 Javascript
Javascript this 关键字 详解
2014/10/22 Javascript
Markdown与Bootstrap相结合实现图片自适应属性
2016/05/04 Javascript
Javascript 6里的4个新语法
2016/08/25 Javascript
AngularJS 模块化详解及实例代码
2016/09/14 Javascript
Vue过滤器的用法和自定义过滤器使用
2017/02/08 Javascript
详解react-webpack2-热模块替换[HMR]
2017/08/03 Javascript
浅谈node中的cluster集群
2018/06/02 Javascript
jquery.pagination.js分页使用教程
2018/10/23 jQuery
微信小程序上传图片到php服务器的方法
2019/05/23 Javascript
Flexible.js可伸缩布局实现方法详解
2020/11/13 Javascript
详解Python函数可变参数定义及其参数传递方式
2017/08/02 Python
在pycharm中python切换解释器失败的解决方法
2018/10/29 Python
python利用跳板机ssh远程连接redis的方法
2019/02/19 Python
Python中dict和set的用法讲解
2019/03/28 Python
python算法与数据结构之单链表的实现代码
2019/06/27 Python
Python字符串、列表、元组、字典、集合的补充实例详解
2019/12/20 Python
python实现遍历文件夹图片并重命名
2020/03/23 Python
Python字符串及文本模式方法详解
2020/09/10 Python
Python爬虫获取op.gg英雄联盟英雄对位胜率的源码
2021/01/29 Python
IE浏览器单独写CSS样式的几种方法
2014/10/14 HTML / CSS
节约用电标语
2014/06/17 职场文书
2014学习优秀共产党员先进事迹材料思想汇报
2014/09/14 职场文书
幼师小班个人总结
2015/02/12 职场文书
2015年女职工工作总结
2015/05/15 职场文书
2015医院个人工作总结范文
2015/05/21 职场文书
永不妥协观后感
2015/06/10 职场文书
在职证明书模板
2015/06/15 职场文书
写作技巧:如何撰写商业计划书
2019/08/08 职场文书