用JS给页面添加CSS
//只用JS添加CSS var styles = ` .btn_c#addToCart{background:blue} ` var styleSheet = document.createElement("style") styleSheet.innerTex ... 继续阅读 »
//只用JS添加CSS var styles = ` .btn_c#addToCart{background:blue} ` var styleSheet = document.createElement("style") styleSheet.innerTex ... 继续阅读 »
getComputedStyle(element).property 如获取颜色getComputedStyle(header).color header是选择器 element.style.property gets only CSS properties assigned directly ... 继续阅读 »
相当于 $(el).before(‘html’ | element) el.insertAdjacentHTML('beforeBegin', 'html'); el.insertAdjacentElement('beforebegin', ele ... 继续阅读 »
纯js方法// (1)、页面所有内容加载完成执行 window.onload = function(){ } // (2)、ie9以上版本监听事件 if('addEventListener' in document){ document.addEventLi ... 继续阅读 »
$(document).ready(function(){ $("li").hide(); $("ul").click(function(){ $(this).children().toggle() ... 继续阅读 »
Sleep use JSfunction sleep(delay) { var start = (new Date()).getTime(); while ((new Date()).getTime() - start < delay) { continue; } ... 继续阅读 »