国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 語言 > JavaScript > 正文

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

2024-05-06 14:12:11
字體:
來源:轉載
供稿:網友
代碼如下:
//處理頁面異常
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.element.style." + name);
}

//設置浮動樣式
this.setFloat = function(styleFloat) {
this.setStyle("styleFloat", styleFloat);
}
//設置背景色
this.setBackgroundColor = function(backgroundColor) {
this.setStyle("backgroundColor", backgroundColor);
}
//獲取背景色
this.getBackgroundColor = function() {
return this.getStyle("backgroundColor");
}
//設置對象寬度
this.setWidth = function(width) {
//alert(width);
this.setStyle("width", width);
}
//設置對象寬度
this.setHeight = function(height) {
this.setStyle("height", height);
}
//設置頁面定位
this.setPosition = function(position) {
this.setStyle("position", position);
}
//設置層
this.setZIndex = function(zIndex) {
this.setStyle("zIndex", zIndex);
}
//左邊距離
this.setLeft = function(left) {
this.setStyle("left", left);
}
//上邊距離
this.setTop = function(top) {
this.setStyle("top", top);
}
//是否換行
this.setWhiteSpace = function(whiteSpace) {
this.setStyle("whiteSpace", whiteSpace);
}
this.setMargin = function(margin) {
this.setStyle("margin", margin);
}
this.setPadding = function(padding) {
this.setStyle("padding", padding);
}

//設置屬性
this.setAttributeIsHave = function(attrName, value) {
eval("this.element.setAttribute('" + attrName + "', '" + value + "')");
}
this.setId = function(id) {
this.setAttributeIsHave("id", id);
}
this.setInnerText = function(innertext) {
this.setAttributeIsHave("innerText", innertext);
}

//加入自定義屬性
this.setAttributeIsNot = function(attrName, value) {
var attr = document.createAttribute(attrName);
attr.value = value;
this.element.setAttributeNode(attr);
}

//事件監聽
this.eventListener = function(eventName, exec) {
this.element.attachEvent(eventName, exec);
}
//鼠標移入對象事件
this.onmouseenterListener = function(exec) {
this.eventListener("onmouseenter", exec);
}
//鼠標移出對象事件
this.onmouseleaveListener = function(exec) {
this.eventListener("onmouseleave", exec);
}
//鼠標單擊對象事件
this.onclickListener = function(exec) {
this.eventListener("onclick", exec);
}
}

//單一元素
function Single() {
View.call(this);
}
//可以有子元素
function Multi() {
View.call(this);
//子元素集合
this.childElementList = new Array();
//加入子元素
this.addView = function(childElement) {
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表

圖片精選

主站蜘蛛池模板: 兴城市| 博乐市| 建瓯市| 海盐县| 忻州市| 西峡县| 门源| 探索| 防城港市| 钦州市| 四子王旗| 怀宁县| 赣州市| 阜宁县| 思茅市| 丹寨县| 五华县| 上思县| 杭锦旗| 黄骅市| 南澳县| 吕梁市| 达州市| 浙江省| 海南省| 本溪市| 台中县| 灌阳县| 尉氏县| 邹城市| 米林县| 库尔勒市| 大邑县| 湄潭县| 乌兰察布市| 共和县| 仙居县| 资溪县| 张家港市| 仙居县| 屯门区|