为什么实例变量不采用新值

发布于 2024-10-11 23:42:01 字数 182 浏览 7 评论 0原文

这是一个代码示例:

var testObject =
{
   val1:  1,

   testing:  function( )
   {
      val1 = 2;
      alert( val1 );
   }
};

为什么当alert打印val1时,它说未定义?

Here is a code example:

var testObject =
{
   val1:  1,

   testing:  function( )
   {
      val1 = 2;
      alert( val1 );
   }
};

how come when alert prints val1, it's says undefined?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

与之呼应 2024-10-18 23:42:01

不,它不 http://jsfiddle.net/qmLMV/

请注意 val1: 1 是一个属性,函数体内的val1 = 2; 是一个变量。与所有变量一样,它将经历标识符解析。在这种情况下,您正在创建一个应该避免的隐式全局变量。预先声明您的变量。

function() {
    var val1 = 2;
}

另请注意:

var testObject = {
   val1:  1,
   testing: function() {
      var val1 = 2;

      alert(val1); // alerts 2
      alert(this.val1); // alerts 1
   }
};

使用 this 从该对象的方法中访问该对象的属性。

No, it doesn't http://jsfiddle.net/qmLMV/

Note that val1: 1 is a property, and the val1 = 2; inside the function body is a variable. Like with all variables, it will undergo identifier resolution. In this case, you are creating an implicit global variable which should be avoided. Declare your variables beforehand.

function() {
    var val1 = 2;
}

Also note this:

var testObject = {
   val1:  1,
   testing: function() {
      var val1 = 2;

      alert(val1); // alerts 2
      alert(this.val1); // alerts 1
   }
};

Use this to access the properties of the object from within that object's method.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文