首页 > 代码动态加载css

代码动态加载css

/*代码动态加载css*/
function loadCSS(url) {let css = document.createElement("link");css.type = "text/css";css.rel = "stylesheet";css.href = url;document.querySelector("head").appendChild(css);
}

更多相关: