- 注册时间
- 2013-2-13
- 最后登录
- 2023-10-13
- 阅读权限
- 200
- 积分
- 9346
- 精华
- 1
- 帖子
- 2411
|
发表于 2013-5-18 09:09:10
|显示全部楼层
勘误列表
1.
代码清单1-7中- cxt.fillStyle="#FF0000";
- cxt.fillRect(0,0,150,75);
复制代码 两个cxt改为ctx。
2.
第13页
1.6.1小节中最下面部分的代码- function MyClass(name,age){
- this.name = name;
- this.age = age;
- this.toString() = function(){
- alert(this.name + “:” + this.age);
- };
- };
复制代码 改为- function MyClass(name,age){
- this.name = name;
- this.age = age;
- this.toString = function(){
- alert(this.name + “:” + this.age);
- };
- };
复制代码 3.
第14页
【经过测试,可以发现,我们已经成功地给MyClass增加了toString方法。另外,也可以用以下方式来添加方法,代码如下所示:】下面的代码- cls1.toString() = function(){
- alert(this.name + “:” + this.age);
- };
复制代码 改为- cls1.toString = function(){
- alert(this.name + “:” + this.age);
- };
复制代码 4.
【比如,下面的代码会出错:】下面的代码- cls1.toString() = function(){
- alert(this.name + “:” + this.age);
- };
复制代码 改为- cls1.toString = function(){
- alert(this.name + “:” + this.age);
- };
复制代码 5.
第34页
代码清单2-17中最后一个注释【//设定文字大小为100px】改为【//设定文字大小为70px】
6.
|
|