samlin

 IE:

 

Code
cssStr = "p { color:#FF0000;} a { font-size:9pt;}";
var style = win.document.createStyleSheet();
style.cssText
= cssStr;

 

FF:

 

Code
cssStr = "p { color:#FF0000;} a { font-size:9pt;}";
var style = win.document.createElement("style");
style.type
= "text/css";
style.innerHTML
= cssStr;
win.document.getElementsByTagName(
"HEAD").item(0).appendChild(style);

分类:

技术点:

相关文章:

  • 2021-10-17
  • 2021-10-19
  • 2021-12-03
  • 2021-12-05
  • 2021-10-19
  • 2021-12-10
  • 2021-12-19
  • 2021-12-19
猜你喜欢
  • 2021-12-15
  • 2021-12-06
  • 2021-06-29
  • 2021-10-17
  • 2022-01-09
  • 2021-10-19
  • 2021-12-05
相关资源
相似解决方案