QQ登录

只需要一步,快速开始

 注册地址  找回密码
查看: 2790|回复: 1
打印 上一主题 下一主题

你可能不知道的10个JavaScript小技巧

[复制链接]
字体大小: 正常 放大

180

主题

68

听众

1974

积分

  • TA的每日心情
    开心
    2015-6-19 13:01
  • 签到天数: 3 天

    [LV.2]偶尔看看I

    社区QQ达人

    跳转到指定楼层
    1#
    发表于 2015-6-29 09:35 |只看该作者 |倒序浏览
    |招呼Ta 关注Ta
    尽管我使用Javascript来做开发有很多年了,但它常有一些让我很惊讶的小特性。对于我来说,Javascript是需要持续不断的学习的。在这篇文章中,我将列出10个Javascript使用小技巧,主要面向Javascript新手和中级开发者。希望每个读者都能至少从中学到一个有用的技巧。
    & X& y4 Q- g$ l; ^

    & `; X1 p6 x- o6 E* b
    1.变量转换
    4 t: {9 v/ s; d' @
    看起来很简单,但据我所看到的,使用构造函数,像Array()或者Number()来进行变量转换是常用的做法。始终使用原始数据类型(有时也称为字面量)来转换变量,这种没有任何额外的影响的做法反而效率更高。
    var myVar   = "3.14159",
    str     = ""+ myVar,//  to string
    int     = ~~myVar,  //  to integer
    float   = 1*myVar,  //  to float
    bool    = !!myVar,  /*  to boolean - any string with length
    and any number except 0 are true */
    array   = [myVar];  //  to array
    转换日期(new Date(myVar))和正则表达式(new RegExp(myVar))必须使用构造函数,而且创建正则表达式的时候要使用/pattern/flags的形式。
    ! o# j+ c5 z/ G2 M+ i* y
    2.十进制转换为十六进制或者八进制,或者反过来

    - D2 g: D) [4 K. e$ a! F
    你是不是写个单独的函数来转换十六进制(或者八进制)呢?马上停下吧!有更容易的现成的函数可以用:
    (int).toString(16); // converts int to hex, eg 12 => "C"
    (int).toString(8);  // converts int to octal, eg. 12 => "14"
    parseInt(string,16) // converts hex to int, eg. "FF" => 255
    parseInt(string,8) // converts octal to int, eg. "20" => 16
    3.玩转数字
    + M3 q0 _) B) d  R" I( W
    除了上一节介绍的之外,这里有更多的处理数字的技巧
    0xFF; // Hex declaration, returns 255
    020; // Octal declaration, returns 16
    1e3; // Exponential, same as 1 * Math.pow(10,3), returns 1000
    (1000).toExponential(); // Opposite with previous, returns 1e3
    (3.1415).toFixed(3); // Rounding the number, returns "3.142"
    4.Javascript版本检测
    ! I: w1 [+ L$ U7 ~0 _
    你知道你的浏览器支持哪一个版本的Javascript吗?如果不知道的话,去维基百科查一下Javascript版本表吧。出于某种原因,Javascript 1.7版本的某些特性是没有得到广泛的支持。不过大部分浏览器都支持了1.8版和1.8.1版的特性。(注:所有的IE浏览器(IE8或者更老的版本)只支持1.5版的Javascript)这里有一个脚本,既能通过检测特征来检测JavaScript版本,它还能检查特定的Javascript版本所支持的特性。
    var JS_ver  = [];
    (Number.prototype.toFixed)?JS_ver.push("1.5"):false;
    ([].indexOf && [].forEach)?JS_ver.push("1.6"):false;
    ((function(){try {[a,b] = [0,1];return true;}catch(ex) {return false;}})())?JS_ver.push("1.7"):false;
    ([].reduce && [].reduceRight && JSON)?JS_ver.push("1.8"):false;
    ("".trimLeft)?JS_ver.push("1.8.1"):false;
    JS_ver.supports = function()
    {
      if (arguments[0])
        return (!!~this.join().indexOf(arguments[0] +",") +",");
      else
        return (this[this.length-1]);
    }
    alert("Latest Javascript version supported: "+ JS_ver.supports());
    alert("Support for version 1.7 : "+ JS_ver.supports("1.7"));
    5.使用window.name进行简单会话处理

    . k' m& Y8 r  }! j/ W/ H% B
    这个是我真的喜欢的东西。您可以为指定一个字符串作为window.name属性的值,直到您关闭该标签或窗口。虽然我没有提供任何脚本,但我强烈建议您如充分利用这个方法。举例来说,在建设一个网站或应用程序的时候,在调试和测试模式之间切换是非常有用的。
    9 n$ a) l7 k# [& h( @0 P1 \
    6.判断属性是否存在

    1 R4 B; Y* P+ Z3 [
    这个问题包含两个方面,既有检查属性时候存在,还要获取属性的类型。但我们总是忽略了这些小事情:
    // BAD: This will cause an error in code when foo is undefined
    if (foo) {
      doSomething();
    }
    // GOOD: This doesn't cause any errors. However, even when
    // foo is set to NULL or false, the condition validates as true
    if (typeof foo != "undefined") {
      doSomething();
    }
    // BETTER: This doesn't cause any errors and in addition
    // values NULL or false won't validate as true
    if (window.foo) {
      doSomething();
    }
    但是,有的情况下,我们有更深的结构和需要更合适的检查的时候,可以这样:
    // UGLY: we have to proof existence of every
    // object before we can be sure property actually exists
    if (window.oFoo && oFoo.oBar && oFoo.oBar.baz) {
      doSomething();
    }
    7.给函数传递参数

    ! ~2 y# T2 c6 P! j6 x& u% M7 D
    当函数既有必选又有可选参数的时候,我们可能是这样做的:

    % b: E' m& `* J- k6 l
    function doSomething(arg0, arg1, arg2, arg3, arg4) {
      ...
    }
    doSomething('', 'foo', 5, [], false);
    而传递一个对象总是比传递一堆的参数更方便:
    function doSomething() {
      // Leaves the function if nothing is passed
      if (!arguments[0]) {
      return false;
      }
      var oArgs   = arguments[0]
      arg0    = oArgs.arg0 || "",
      arg1    = oArgs.arg1 || "",
      arg2    = oArgs.arg2 || 0,
      arg3    = oArgs.arg3 || [],
      arg4    = oArgs.arg4 || false;
    }
    doSomething({
      arg1    : "foo",
      arg2    : 5,
      arg4    : false
    });
    这只是一个把对象作为参数传递的一个很简单的例子,例如,我们还可以声明一个对象,变量名作为Key,默认值作为Value。

    1 v! i" j, O3 V' A! B* S
    8.使用document.createDocumentFragment()
    $ r, f' D( r3 H+ r- }
    您可能需要动态地追加多个元素到文档中。然而,直接将它们插入到文档中会导致这个文档每次都需要重新布局一个,相反的,你应该使用文档碎片,建成后只追加一次:
    function createList() {
      var aLI = ["first item", "second item", "third item",
      "fourth item", "fith item"];
      // Creates the fragment
      var oFrag   = document.createDocumentFragment();
      while (aLI.length) {
        var oLI = document.createElement("li");
        // Removes the first item from array and appends it
        // as a text node to LI element
        oLI.appendChild(document.createTextNode(aLI.shift()));
        oFrag.appendChild(oLI);
      }
      document.getElementById('myUL').appendChild(oFrag);
    }
    9.为replace()方法传递一个函数

    8 P! J* |% \& N1 ]5 u. w- U
    有的时候你想替换字符串的某个部分为其它的值,最好的方法就是给String.replace()传递一个独立的函数。下面是一个简单例子:
    var sFlop   = "Flop: [Ah] [Ks] [7c]";
    var aValues = {"A":"Ace","K":"King",7:"Seven"};
    var aSuits  = {"h":"Hearts","s":"Spades",
    "d":"Diamonds","c":"Clubs"};
    sFlop   = sFlop.replace(/\[\w+\]/gi, function(match) {
      match   = match.replace(match[2], aSuits[match[2]]);
      match   = match.replace(match[1], aValues[match[1]] +" of ");
      return match;
    });
    // string sFlop now contains:
    // "Flop: [Ace of Hearts] [King of Spades] [Seven of Clubs]"
    10.循环中标签的使用

    ; Z) b0 k' A( w+ y( K, D
    有的时候,循环中又嵌套了循环,你可能想在循环中退出,则可以用标签:
    outerloop:
    for (var iI=0;iI<5;iI++) {
      if (somethingIsTrue()) {
      // Breaks the outer loop iteration
      break outerloop;
      }
      innerloop:
      for (var iA=0;iA<5;iA++) {
        if (somethingElseIsTrue()) {
        // Breaks the inner loop iteration
        break innerloop;
      }
      }
    }
    2 |, B4 o% m3 o1 e$ Y
    zan
    转播转播0 分享淘帖0 分享分享0 收藏收藏0 支持支持0 反对反对0 微信微信

    0

    主题

    9

    听众

    18

    积分

    升级  13.68%

  • TA的每日心情
    无聊
    2015-7-1 14:26
  • 签到天数: 1 天

    [LV.1]初来乍到

    社区QQ达人

    回复

    使用道具 举报

    您需要登录后才可以回帖 登录 | 注册地址

    qq
    收缩
    • 电话咨询

    • 04714969085
    fastpost

    关于我们| 联系我们| 诚征英才| 对外合作| 产品服务| QQ

    手机版|Archiver| |繁體中文 手机客户端  

    蒙公网安备 15010502000194号

    Powered by Discuz! X2.5   © 2001-2013 数学建模网-数学中国 ( 蒙ICP备14002410号-3 蒙BBS备-0002号 )     论坛法律顾问:王兆丰

    GMT+8, 2024-4-26 20:57 , Processed in 0.688805 second(s), 59 queries .

    回顶部