码迷,mamicode.com
首页 > Web开发 > 详细

关于JS的传递方式的小理解

时间:2016-04-18 20:24:42      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

    var test = function() {//将其看成是创建了一个对象
        alert(1);
    }

    var otherTest = test;//赋值导致test和otherTest指向同一个对象
    otherTest();
    test.sd = 9;//对对象进行操作,两者都发生改变
    alert(otherTest.sd);//9
    var test = function() {//test重新创建了一个对象,改变了原来的指向
        alert(2);
    }
    otherTest();//2

 

关于JS的传递方式的小理解

标签:

原文地址:http://www.cnblogs.com/feile/p/5405651.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!