内容比较多 
如何做呢?

解决方案 »

  1.   

    提到别一个网页去接收,就行。submit-> post
      

  2.   

    办法很多呀!post
    session
    URL传递................
      

  3.   

    post
    这种方法我不知道能不能麻烦您给写一个 简单的代码8搂不要灌水好吗
      

  4.   

    POST好想要提交表单才行,可以考虑使用COOKIE,将要传递的值用JS保存到COOKIE中,下一页去读取。也可以使用GET方法,如果内容多就不行了。
      

  5.   

    能不能给个实例就是把本页的DIV里的内容 传送给另外一个页的div
      

  6.   


    a.html <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
    <title>无标题文档</title>
    <script type="text/javascript" src="file:///C|/JavaScript/jquery.js"></script>
    <script type="text/javascript">
    window.onload = function(){
            var bhtml = document.getElementById('bhtml');
            document.getElementById('click').onclick = function(){
                window.open('bb.html','');
            };
        };
    </script>
    </head><body>
    <div id="a">我a页面的值</div>
        <input type="button" id="click" value="click me" />
    </body>
    </html>
    bb.html<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
    <title>无标题文档</title>
    <script type="text/javascript">
            
            var a = opener.document.getElementById('a').innerHTML;
            alert(a);
            document.getElementById('d').innerHTML = a;</script>
    </head><body>
    <div id="d"></div>
    </body>
    </html>