为什么实例变量不采用新值
这是一个代码示例:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,它不 http://jsfiddle.net/qmLMV/
请注意
val1: 1
是一个属性,函数体内的val1 = 2;
是一个变量。与所有变量一样,它将经历标识符解析。在这种情况下,您正在创建一个应该避免的隐式全局变量。预先声明您的变量。另请注意:
使用
this
从该对象的方法中访问该对象的属性。No, it doesn't http://jsfiddle.net/qmLMV/
Note that
val1: 1
is a property, and theval1 = 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.Also note this:
Use
this
to access the properties of the object from within that object's method.