1. 首页
  2. 数据库
  3. SQLite
  4. window.js 主要包含了页面的一些操作

window.js 主要包含了页面的一些操作

上传者: 2020-12-13 13:53:08上传 PDF文件 35.5KB 热度 10次
代码如下://处理页面异常 function Exception() { } //页面元素共同接口 function View() { //页面元素 this.element = null; //文字颜色 this.color = null; //设置样式 this.setStyle = function(name, value) { eval(“this.element.style.” + name + ” = ‘” + value + “‘”); } //获取样式 this.getStyle = function(name) { return eval(“this.elem
用户评论