可能重复:
How to change/remove CSS classes definitions at runtime?
<!DOCTYPE html>
<meta charset="utf-8">
<title>An HTML5 Document</title>
<style>
body {
background: red;
}
</style>
如何通过JS在style
元素中获取CSS代码?谢谢。
答案 0 :(得分:0)
var styleElement = document.createElement("style");
styleElement.innerHTML = "body { \n\
background: red; \n\
}";
document.body.appendChild(styleElement);