当前位置: 代码迷 >> JavaScript >> JS 给table外面加层DIV解决方案
  详细解决方案

JS 给table外面加层DIV解决方案

热度:70   发布时间:2012-03-09 16:54:57.0
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">");

但发现不对。。。高手求解


------解决方案--------------------
完整代码?
  相关解决方案