摘要:
获取和设置元素的方法:. [] getAttribute具体实例:HTML部分:JS部分:window.onload = function(){ var oText = document.getElementById('text1'); // 获取和设置元... 阅读全文
摘要:
CSS部分:div {padding: 40px 50px;}#div1 {background: red;position: relative;}#div2 {background: green; position: relative;}#div3 {background: orange; pos... 阅读全文
摘要:
元素的width和height style.width : 样式宽 clientWidth : 可视区宽 offsetWidth : 占位宽 style.height: 样式高 clientHeight: 可视区高 offsetHeight: 占位高HTML部分: JS部分:wind... 阅读全文