你好,我从 xml 文件中提取样式属性名称(在本例中为颜色和字体),所以最后我有变量style1=color
和style2= font
;
但是当我编写以下代码时 - 它不起作用 - 程序说这style1
是未定义的。我该如何改变呢?
var header=document.createElement("div");
header.setAttribute("id", "header1");
header.style.style1=headerstyles[i].nodeValue;