我想用一些数据创建一个 XML 文件,但是 IE8 抛出一个错误。使用 FF 和 Chrome,我的脚本可以工作。知道为什么col.appendChild(document.createTextNode(this))
不能使用 IE8 吗?
var xmlDoc = $.parseXML("<?xml version=\"1.0\" encoding=\"UTF-8\"?><mapping-table/>");
//Append rows with col to XML-document
$.each(trData, function(){
var row = xmlDoc.createElement('row');
$.each(this, function(){
var col = xmlDoc.createElement('col');
col.appendChild(document.createTextNode(this));
row.appendChild(col);
});
xmlDoc.documentElement.appendChild(row);
});