2019年9月5日

document基本操作 动态脚本-动态样式-创建表格

摘要: var html = document.documentElement; var body = document.body; window.onload = function() { //document.write("Hello world!"); } var fragment = document.createDocumentFragment(); var ul = documen... 阅读全文

posted @ 2019-09-05 15:33 迎着风追赶 阅读(811) 评论(0) 推荐(0)

js原型模式和继承

摘要: function SuperType() { this.property = true; //原型属性 } //基类方法 SuperType.prototype.getSuperValue = function() { return this.property; } function SubType() { this.subproperty = false; //子类属... 阅读全文

posted @ 2019-09-05 10:33 迎着风追赶 阅读(213) 评论(0) 推荐(0)

导航