19
我正在嘗試爲我的網站創建頁面主題功能。我想使用單獨的CSS文件在頁面上動態加載相應的主題。動態加載CSS
我使用這個代碼:
fileref.setAttribute("rel", "stylesheet")
fileref.setAttribute("type", "text/css")
fileref.setAttribute("href", 'link.css')
document.getElementsByTagName("head")[0].appendChild(fileref)
,工作正常,但如果CSS文件加載或沒有它不返回任何信息。
加載.css
時有沒有辦法捕獲?也許通過使用Ajax?
看到有用的鏈接在這裏http://www.cssnewbie.com/simple-jquery-stylesheet-switcher/ – 2010-09-19 02:21:05