var str="hello";
var obj={
str:"world",
fun:function(){
alert(str);
}
obj.fun(); //结果是hello
为什么结果是hello,而不是world
青春有我
相关分类