window.js 主要包含了页面的一些操作
代码如下://处理页面异常 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
用户评论