JavaScript语言基础

一.Script标签,注释,变量,调试方法,基本数据类型

 document是JavaScript的内置对象代表浏览器的文档部分
 document.write(".....");向文档写入内容
 JavaScript都是放在
   为已经存在的对象增加方法,通过prototype实现
             Hero.prototype.keng = function(){
                      document.write(this.name + "正在 
                                         坑队友
"); }

你可能感兴趣的:(JavaScript语言基础)