MozTW 討論區
https://forum.moztw.org/

[Tips] 動態載入CSS
https://forum.moztw.org/viewtopic.php?f=18&t=16707
1 頁 (共 1 頁)

發表人:  yuoo2k [ 2006-12-02, 11:32 ]
文章主題 :  [Tips] 動態載入CSS

代碼:
function applyStyle(css) {
   const ios = Components.classes["@mozilla.org/network/io-service;1"].getService(Components.interfaces.nsIIOService);
   const sss = Components.classes["@mozilla.org/content/style-sheet-service;1"].getService(Components.interfaces.nsIStyleSheetService);
   var cssURL = "data:text/css," + css;
   sss.loadAndRegisterSheet(ios.newURI(cssURL, null, null), sss.USER_SHEET);
   var stylesheetLink = document.createElementNS("http://www.w3.org/1999/xhtml", "link");
   stylesheetLink.type = "text/css";
   stylesheetLink.rel = "stylesheet";
   stylesheetLink.href = cssURL;
   stylesheetLink.charset = "UTF-8";
   document.documentElement.appendChild(stylesheetLink);
}

Reference: @Stylish:stylishCommon.js#registerStyle()

1 頁 (共 1 頁) 所有顯示的時間為 UTC + 8 小時
Powered by phpBB® Forum Software © phpBB Group
https://www.phpbb.com/