如果你有很多關聯(lián)的CSS文件要一起加載,或者想動態(tài)的加載不同的CSS文件,那么下面的方法你一定對你有幫助。
第一種:一般用在外部CSS文件中加載必須的文件
@import url(style.css);
/*只能用在CSS文件中或者style標簽中*/
第二種:簡單的在頁面中加載一個外部CSS文件
document.createStyleSheet(cssFile);
第三種:用createElement方法創(chuàng)建CSS的Link標簽
var head = document.getElementsByTagName('HEAD').item(0);
var style = document.createElement('link');
style.href = 'style.css';
style.rel = 'stylesheet'
style.type = 'text/css';
head.appendChild(style);
該文章在 2024/2/1 16:28:30 編輯過