为什么输出this.x跟this.y是undefine?

来源:2-5 随机生成很多星星

weibo_忽诶顪_0

2017-05-02 21:56

var starObj = function() {this.x;this.y;}

starObj.prototype.init = function() {this.x = 300;this.y = 400;}

starObj.prototype.draw = function() {

console.log(this.x);}


写回答 关注

1回答

  • chenxiaoxiao12
    2017-05-17 16:28:00

    那是没有定义的啊!你没有new 实例化啊   

canvas实现星星闪烁特效

使用HTML5实现轮播图片上的序列帧,进行拆分讲解,逐步实现目标

54188 学习 · 121 问题

查看课程

相似问题