var style = document.createElement("style");
style.type = "text/css";
try{
style.appendChild(document.createTextNode("body{background-color:red}"));
}catch(ex){
style.styleSheet.cssText = "body{background-color:red}";//針對IE
}
var head = document.getElementsByTagName("head")[0];
head.appendChild(style);