js學(xué)習(xí)過程中遇到個(gè)奇怪的問題,為什么使用this.name就會(huì)出現(xiàn)錯(cuò)誤提示,但是this[name]就是正常的?報(bào)錯(cuò)提示為:Uncaught TypeError: methods.fun2 is not a function <script>
Function.prototype.addMethod = function(name,fn){
this[name] = fn;//這里用this.name就不行,為什么?
};
var methods = new Function();//沒有{}
methods.addMethod('fun2',function(){
console.log("綠色污染");
});
methods.fun2();
</script>能詳細(xì)解說下何時(shí)使用this.name何時(shí)使用this[name]嗎?謝謝大圣
js中this[name]與this.name的區(qū)別
UYOU
2018-07-21 16:10:54