如果你有很多關聯的CSS文件要一起加載,或者想動態的加載不同的CSS文件,那么下面的方法你一定對你有幫助。第一種:一般用在外部CSS文件中加載必須的文件@import url(style.css);/*只能用在CSS文件中或者style標簽中*/ 第二種:簡單的在頁面中加載一個外部CSS文件document.createStyleSheet(cssFile); 第三種:用createElement方法創建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);