document对象 文档输入输出问题

来源:9-4 区别getElementByID,getElementsByName,getElementsByTagName

一墨飞雪

2016-04-23 11:19

为什么页面跳转不过去?哪里错了,求指教


<script language="javascript">

<!--

      function newopen(){

      var dw=window.open();

     dw.document.open();

  dw.document.write("<html><head><title>一个新的页面</title>");

dw.document.write("<script language='javascript'>");

dw.document.write("function woc(){document.write('笑笑');}");

dw.document.write("</script></head>");

dw.document.write("<body>");

dw.document.write("<img src='image/mmexport1427618752278.jpg'><br/>");

dw.document.write("这里是写入的新内容<br/>");

dw.document.write("<input type='text'/>");

dw.document.write("</body></html>");

dw.document.close();

}

-->

<body>


<input type="button" value="打开一个新文档" onClick="newopen();" />


</body>


写回答 关注

1回答

  • Galary
    2016-04-23 20:49:19
    已采纳

    js代码没有闭合,这么多内容是要实现什么啊。好乱

    一墨飞雪

    用document文档的输入输出构造出一个页面,非常感谢

    2016-04-24 10:34:15

    共 1 条回复 >

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468061 学习 · 21891 问题

查看课程

相似问题