classListIE9及更低版本不支持该属性。IE10
+支持它。
使用
className += " .."代替。注意:不要忽略空格:类名应添加在以空格分隔的列表中。
var img = new Image();img.src = '/image/file.png';img.title = 'this is a title';img.className += " profilePic"; // Add profilePic class to the imagevar div = document.createElement("div");div.className += " picWindow"; // Add picWindow class to the divdiv.appendChild(img);content.appendChild(div);


