JS 给table外面加层DIV
HTMl 有个TABLE
<TABLE style="TABLE-LAYOUT: fixed" id=Section2 cellSpacing=0 cellPadding=3 width="100%">
...
</TABLE>
我现在需要在TABLE外加层DIV 即变成
<div id="test">
<TABLE style="TABLE-LAYOUT: fixed" id=Section2 cellSpacing=0 cellPadding=3 width="100%">
...
</TABLE>
</div>
我写的JS如下:
var obj = document.getElementById("Section2");
obj.insertAdjacentHTML("beforeBegin", "<div id="test">");
但发现不对。。。高手求解
------解决方案--------------------
完整代码?