JS获取元素属性

getComputedStyle(element).property 如获取颜色getComputedStyle(header).color header是选择器 element.style.property gets only CSS properties assigned directly ... 继续阅读 »

JS等待页面加载完毕

纯js方法// (1)、页面所有内容加载完成执行 window.onload = function(){ } // (2)、ie9以上版本监听事件 if('addEventListener' in document){ document.addEventLi ... 继续阅读 »