上一篇:js载入优化 下一篇:变量专题

with优化

with优化

  • 尽可能地少用with语句,因为它会增加with语句以外的数据的访问代价。
  • 避免使用with

    with语句将一个新的可变对象推入作用域链的头部,函数的所有局部变量现在处于第二个作用域链对象中,从而使局部变量的访问代价提高。

    var person = {
         name: “Nicholas",
         age: 30
    }
    function displayInfo() {
         var count = 5;
         with (person) {
             alert(name + ' is ' + age);
             alert( 'count is ' + count);
         }
    }
上一篇:js载入优化 下一篇:变量专题