function animal(){this.eat = function (){ console.log('i will eat'); }}为什么不能用animal.eat()的方法去执行,而是用var一个实例,去执行。不理解其中原理animal.eat(); //eat不是一个函数 查看完整描述