将动态表从一个html页面传递到另一个html页面

时间:2014-05-22 04:59:01

标签: javascript html5

我通过在一个html页面中动态添加行来创建html表格,我需要从其他页面访问整个表格以删除所选行表格表格,使用javascript,任何人都可以帮我解决这个问题吗?

1 个答案:

答案 0 :(得分:0)

first.html 中 假设您的表位于名为“mydiv”的div中

<div id='mydiv'>
<table> .... </table>

</div>

在转到'second.html'之前,先在'first.html'

中的javascript中执行此操作
   var htmlcontent = document.getElementById('mydiv').innerHTML;

将htmlcontent设置为名为“mycookie”的cookie

second.html

   get htmlcontent from cookie
   set it as innerHTML of a div 'destinationdiv' in second.html