<input type="hidden" value="storage" value="<html><head><title>greeting</title></head><body>">
应该改为:
<input type="hidden" name="storage"
  value="<html><head><title>greeting</title></head><body>">
至于MSG 我查一下资料看有什么问题

解决方案 »

  1.   

    Try it! :)<html>
    <head>
    <title>good</title>
    <script language="javascript">
      function preview (form)
    {
        var msg = window.open("","","toolbar=yes,scrollbar=yes");
        msg.document.write(form.storage.value);
    }
    </script>
    </head>
    <body>
    <form>
    <input type="hidden" name="storage"
      value="<html><head><title>greeting</title></head><body>">
    <comment>隐藏对象在这里</comment>
    <input type="button" value="你好"
          onclick='storage.value +="<h1>嗨,你好</h1>" '>
    <input type="button" value="我好"
          onclick='storage.value +="<h1>嗨,我好</h1>" '>
    <input type="button" value="看看我的问候"
          onclick="preview(document.forms(0))">
    </form>
    </body>
    </html>