你可以将表格放在一个帧里,如下所示
<iframe id=kk width=100 height=100 src="test.htm"></iframe>
其中的test.htm就包含你的那个表格
需要刷新的时候就document.frames.kk.document.location.reload();

解决方案 »

  1.   

    或者你通过自动更新的iframe 里的内容来动态更新页面上的任意区域。
      

  2.   

    至少有3种办法:上面只是其中的一种,你还可以用xmlhttp来做。很方便简单
      

  3.   

    qiushuiwuhen(秋水无恨)
    你能说详细一点吗?
    最好一个简单的例子,我一点都不知道.
      

  4.   

    #default#download的例子
    http://www.csdn.net/expert/topic/938/938653.xml?temp=.8279383
      

  5.   

    startDownload()的用法能讲一讲吗?
      

  6.   

    The download behavior and the file specified in the startDownload method must exist on the same domain.<HTML XMLNS:IE><SCRIPT>
        function onDownloadDone(s) { alert (s); }
    </SCRIPT><IE:Download ID="oDownload" STYLE="behavior:url(#default#download)" />
    <P>Click <A HREF="javascript:oDownload.startDownload('download.htm', 
    onDownloadDone)">here</A> to download this page.
      

  7.   

    download Behavior有两个前提条件 : 一是IE5+ 支持
    二是必须是相同域名下的文件.