var obj ={};
obj,method = function(){alert(123)};
obj[method()];
var oo ={
me:function(){
alert(12345);
}
}
oo.me();
obj对象访问method方法为啥不能用.符号访问呢
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
道友,你是否写错符号了。