博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jquery 编程的最佳实践
阅读量:4590 次
发布时间:2019-06-09

本文共 9797 字,大约阅读时间需要 32 分钟。

Loading jQuery

  1. Always try to use a CDN to include jQuery on your page. 
     
     for a list of popular jQuery CDNs.
  2. Implement a fallback to your locally hosted library of same version as shown above. 
  3. Use  URL (leave http: or https: out) as shown above.
  4. If possible, keep all your JavaScript and jQuery includes at the bottom of your page.  and a sample on .
  5. What version to use?
    • DO NOT use jQuery version 2.x if you support Internet Explorer 6/7/8.
    • For new web-apps, if you do not have any plugin compatibility issue, it's highly recommended to use the latest jQuery version.
    • When loading jQuery from CDN's, always specify the complete version number you want to load (Example: 1.11.0 as opposed to 1.11 or just 1).
    • DO NOT load multiple jQuery versions.
    • DO NOT use .
  6. If you are using other libraries like Prototype, MooTools, Zepto etc. that uses $ sign as well, try not to use $ for calling jQuery functions and instead use jQuery simply. You can return control of $ back to the other library with a call to $.noConflict().
  7. For advanced browser feature detection, use .

jQuery Variables

  1. All variables that are used to store/cache jQuery objects should have a name prefixed with a $.
  2. Always cache your jQuery selector returned objects in variables for reuse.
    var $myDiv = $("#myDiv"); $myDiv.click(function(){...});
  3. Use  for naming variables.

Selectors

  1. Use ID selector whenever possible. It is faster because they are handled using document.getElementById().
  2. When using class selectors, don't use the element type in your selector. 
    var $products = $("div.products"); // SLOW var $products = $(".products"); // FAST
  3. Use find for Id->Child nested selectors. The .find() approach is faster because the first selection is handled without going through the Sizzle selector engine. 
    // BAD, a nested query for Sizzle selector enginevar $productIds = $("#products div.id"); // GOOD, #products is already selected by document.getElementById() so only div.id needs to go through Sizzle selector engine var $productIds = $("#products").find("div.id");
  4. Be specific on the right-hand side of your selector, and less specific on the left. 
    // Unoptimized$("div.data .gonzalez"); // Optimized $(".data td.gonzalez");
  5. Avoid Excessive Specificity. , 
    $(".data table.attendees td.gonzalez"); // Better: Drop the middle if possible. $(".data td.gonzalez");
  6. Give your Selectors a Context.
    // SLOWER because it has to traverse the whole DOM for .class$('.class'); // FASTER because now it only looks under class-container. $('.class', '#class-container');
  7. Avoid Universal Selectors. 
    $('div.container > *'); // BAD $('div.container').children(); // BETTER
  8. Avoid Implied Universal Selectors. When you leave off the selector, the universal selector (*) is still implied. 
    $('div.someclass :radio'); // BAD $('div.someclass input:radio'); // GOOD
  9. Don’t Descend Multiple IDs or nest when selecting an ID. ID-only selections are handled using document.getElementById() so don't mix them with other selectors.
    $('#outer #inner'); // BAD $('div#inner'); // BAD $('.outer-container #inner'); // BAD $('#inner'); // GOOD, only calls document.getElementById()

DOM Manipulation

  1. Always detach any existing element before manipulation and attach it back after manipulating it. 
    var $myList = $("#list-container > ul").detach(); //...a lot of complicated things on $myList $myList.appendTo("#list-container");
  2. Use string concatenation or array.join() over .append().  
    Performance comparison: 
    // BADvar $myList = $("#list"); for(var i = 0; i < 10000; i++){ $myList.append("
  3. "+i+"
  4. "); } // GOOD var $myList = $("#list"); var list = ""; for(var i = 0; i < 10000; i++){ list += "
  5. "+i+"
  6. "; } $myList.html(list); // EVEN FASTER var array = []; for(var i = 0; i < 10000; i++){ array[i] = "
  7. "+i+"
  8. "; } $myList.html(array.join(''));
  9. Don’t Act on Absent Elements. 
    // BAD: This runs three functions before it realizes there's nothing in the selection$("#nosuchthing").slideUp(); // GOOD var $mySelection = $("#nosuchthing"); if ($mySelection.length) { $mySelection.slideUp(); }

Events

  1. Use only one Document Ready handler per page. It makes it easier to debug and keep track of the behavior flow.
  2. DO NOT use anonymous functions to attach events. Anonymous functions are difficult to debug, maintain, test, or reuse. 
    $("#myLink").on("click", function(){...}); // BAD // GOOD function myLinkClickHandler(){...} $("#myLink").on("click", myLinkClickHandler);
  3. Document ready event handler should not be an anonymous function. Once again, anonymous functions are difficult to debug, maintain, test, or reuse.
    $(function(){
    ... }); // BAD: You can never reuse or write a test for this function. // GOOD $(initPage); // or $(document).ready(initPage); function initPage(){ // Page load event where you can initialize values and call other initializers. }
  4. Document ready event handlers should be included from external files and inline JavaScript can be used to call the ready handle after any initial setup.
     
  5. DO NOT use behavioral markup in HTML (JavaScript inlining), these are debugging nightmares. Always bind events with jQuery to be consistent so it's easier to attach and remove events dynamically.
    my link 
    $("#myLink").on("click", myEventHandler); // GOOD
  6. When possible, use custom  for events. It's easier to unbind the exact event that you attached without affecting other events bound to the DOM element.
    $("#myLink").on("click.mySpecialClick", myEventHandler); // GOOD // Later on, it's easier to unbind just your click event $("#myLink").unbind("click.mySpecialClick");
  7. Use  when you have to attach same event to multiple elements. Event delegation allows us to attach a single event listener, to a parent element, that will fire for all descendants matching a selector, whether those descendants exist now or are added in the future.
    $("#list a").on("click", myClickHandler); // BAD, you are attaching an event to all the links under the list. $("#list").on("click", "a", myClickHandler); // GOOD, only one event handler is attached to the parent.

Ajax

  1. Avoid using .getJson() or .get(), simply use the $.ajax() as that's what gets called internally.
  2. DO NOT use http requests on https sites. Prefer schemaless URLs (leave the protocol http/https out of your URL)
  3. DO NOT put request parameters in the URL, send them using data object setting.
    // Less readable...$.ajax({
    url: "something.php?param1=test1&param2=test2", .... }); // More readable... $.ajax({ url: "something.php", data: { param1: test1, param2: test2 } });
  4. Try to specify the dataType setting so it's easier to know what kind of data you are working with. (See Ajax Template example below)
  5. Use Delegated event handlers for attaching events to content loaded using Ajax. Delegated events have the advantage that they can process events from descendant elements that are added to the document at a later time (example Ajax). 
    $("#parent-container").on("click", "a", delegatedClickHandlerForAjax);
  6. Use Promise interface: 
    $.ajax({
    ... }).then(successHandler, failureHandler); // OR var jqxhr = $.ajax({ ... }); jqxhr.done(successHandler); jqxhr.fail(failureHandler);
  7. Sample Ajax Template: 
    var jqxhr = $.ajax({ url: url, type: "GET", // default is GET but you can use other verbs based on your needs. cache: true, // default is true, but false for dataType 'script' and 'jsonp', so set it on need basis. data: {}, // add your request parameters in the data object. dataType: "json", // specify the dataType for future reference jsonp: "callback", // only specify this to match the name of callback parameter your API is expecting for JSONP requests. statusCode: { // if you want to handle specific error codes, use the status code mapping settings. 404: handler404, 500: handler500 } }); jqxhr.done(successHandler); jqxhr.fail(failureHandler);

Effects and Animations

  1. Adopt a restrained and consistent approach to implementing animation functionality.
  2. DO NOT over-do the animation effects until driven by the UX requirements.
    • Try to use simeple show/hide, toggle and slideUp/slideDown functionality to toggle elements.
    • Try to use predefined animations durations of "slow", "fast" or 400 (for medium).

Plugins

  1. Always choose a plugin with good support, documentation, testing and community support.
  2. Check the compatibility of plugin with the version of jQuery that you are using.
  3. Any common reusable component should be implemented as a jQuery plugin.  for jQuery Plugin Boilerplate code.

Chaining

  1. Use chaining as an alternative to variable caching and multiple selector calls.
    $("#myDiv").addClass("error").show();
  2. Whenever the chain grows over 3 links or gets complicated because of event assignment, use appropriate line breaks and indentation to make the code readable.
    $("#myLink")    .addClass("bold") .on("click", myClickHandler) .on("mouseover", myMouseOverHandler) .show();
  3. For long chains it is acceptable to cache intermediate objects in a variable.

Miscellaneous

  1. Use Object literals for parameters.
    $myLink.attr("href", "#").attr("title", "my link").attr("rel", "external"); // BAD, 3 calls to attr() // GOOD, only 1 call to attr() $myLink.attr({ href: "#", title: "my link", rel: "external" });
  2. Do not mix CSS with jQuery.
    $("#mydiv").css({ 'color':red, 'font-weight':'bold'}); // BAD
    .error {
    color: red; font-weight: bold; } /* GOOD */
    $("#mydiv").addClass("error"); // GOOD
  3. DO NOT use Deprecated Methods. It is always important to keep an eye on deprecated methods for each new version and try avoid using them.  for a list of deprecated methods.
  4. Combine jQuery with native JavaScript when needed. See the performance difference for the example given below: 
    $("#myId"); // is still little slower than... document.getElementById("myId");
  5. 来源于:http://lab.abhinayrathore.com/jquery-standards/

转载于:https://www.cnblogs.com/aytsoft/p/4921558.html

你可能感兴趣的文章
JavaScript面向对象编程
查看>>
查看IIS-7.0中的进程PID
查看>>
关于Python的super用法研究
查看>>
训练1-A
查看>>
ionic4+angular7+cordova上传图片
查看>>
[转]常用字符与ASCII代码对照表
查看>>
Oracle数据库提权(低权限提升至dba)
查看>>
再说Java集合,subList之于ArrayList
查看>>
Hibernate-validator校验框架使用
查看>>
ArcGIS Server开发教程系列(8)ArcGIS API for Javascript-控件(小部件)(续)纯代码...
查看>>
16.10—第三周
查看>>
软件工程第八次作业-例行报告
查看>>
算法:背包问题处理
查看>>
学习随笔(2017-1-10)
查看>>
jieba学习
查看>>
单例模式(Singleton Pattern)
查看>>
再谈async与await
查看>>
无根树转有根树
查看>>
for循环:用turtle画一颗五角星
查看>>
协方差的意义和计算公式(转)
查看>>