当前位置: 代码迷 >> Web前端 >> document文档写下
  详细解决方案

document文档写下

热度:406   发布时间:2014-02-21 00:12:12.0
document文档写入
<html>
<head>
<title>document.write() Example</title>
</head>
<body>
<p>The current date and time is:
<script type="text/javascript">
//写入文档
document.write("<strong>" + (new Date()).toString() + "</strong>");
//方法open()和close()分别用于打开和关闭网页的输出流。如果有了write()和writeln(),
  就不需要这两个方法
</script>
</p>
</body>
</html>

?

  相关解决方案