加载中...

with优化


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

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

    1. var person = {
    2.      name: Nicholas",
    3.      age: 30
    4. }
    5. function displayInfo() {
    6.      var count = 5;
    7.      with (person) {
    8.          alert(name + ' is ' + age);
    9.          alert( 'count is ' + count);
    10.      }
    11. }

还没有评论.