标签:creat 标签 var 字符串 table inner ace 只读 html
function
setTableInnerHTML(table, html) {
//table 为table对象,html为生成的html字符串
if
(navigator && navigator.userAgent.match(/msie/i)) {
var
temp = table.ownerDocument.createElement(
‘div‘
);
temp.innerHTML =
‘<table>‘
+ html +
‘</table>‘
;
//注意此处传进来的html变量包含“<tbody></tbody>”标签 如果HTML变量中没有 则为 ‘<table><tbody>‘ + html + ‘</tbody></table>‘
table.replaceChild(temp.firstChild.firstChild, table.tBodies[0]);
//用生成的div中table的tbody替换原table中的tbody
}
else
{
table.innerHTML = html;
}
}
// var oTBODYData = document.getElementById(‘zhutiTable‘).tBodies.item(0);
// oTBODYData.innerHTML+=html2;
发现是在IE6-IE9下,下列元素table,thead,tfoot,tbody,tr,col,colgroup,html,title,style,frameset的innerHTML属性是只读的
标签:creat 标签 var 字符串 table inner ace 只读 html
原文地址:http://www.cnblogs.com/yangpeng-jingjing/p/7341013.html