IE6-IE9 は table.innerHTML ソリューション Sharing_JavaScript スキルをサポートしていません

WBOY
リリース: 2016-05-16 17:50:04
オリジナル
1031 人が閲覧しました

テストコード:

コードをコピー コードは次のとおりです:


<script> <br>var oTable=document.getElementById("test"); <br>oTable.innerHTML="<tr><td> innerHTML</ td></tr>"; <br></script>


上述代码在IE6-9中无效,直接报错:
  IE9:Invalid target element for this operation.
  IE6-8:Unknown runtime error
  查找IE的文档(http://msdn.microsoft.com/en-us/library/ms533897(VS.85).aspx)后发现有这么一段:

The innerHTML property is read-only on the col, colGroup, frameSet, html, head, style, table, tBody, tFoot, tHead, title, and tr objects.

So we can only use other solutions. My solution:
Copy the code The code is as follows:

var oTable=document.getElementById("test");
//oTable.innerHTML="< ;td>innerHTML";
setTableInnerHTML(oTable,"innerHTML");

function setTableInnerHTML(table, html) {
if(navigator && navigator.userAgent.match(/msie/i)){
var temp = table.ownerDocument.createElement('div');
temp. innerHTML = '' html '
';
if(table.tBodies.length == 0){
var tbody=document.createElement ("tbody");
table.appendChild(tbody);
}
table.replaceChild(temp.firstChild.firstChild, table.tBodies[0]);
} else {
table.innerHTML=html;
}
}

Here we only deal with the table. A similar solution can be used for other unsupported elements.

In addition, tables in IE10 already support innerHTML.

Author: Artwl
関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート