Skip to content

使用 JavaScript 向页面插入 CSS 代码

Published: at 06:12 PMSuggest Changes

使用 js 向页面插入 css 代码

function addCss(cssCode) {
  var styleElement = document.createElement('style');
  styleElement.type = 'text/css';
  if (styleElement.styleSheet) {
    styleElement.styleSheet.cssText = cssCode;
  } else {
    styleElement.appendChild(document.createTextNode(cssCode));
  }
  document.getElementsByTagName('head')[0].appendChild(styleElement);
}

使用方法

var styles = `
    .qwebirc-qui .ircwindow div { 
        font-family: Georgia,Cambria,"Times New Roman",Times,serif;
        margin: 26px auto 0 auto;
        max-width: 650px;
    }
`;
addCss(styles)

参考文章


Previous Post
一些看上去很厉害的 JavaScript 代码示例
Next Post
JS 消抖与节流