欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

document.write()用法 有大用 有大大用

1.document.open()

功能:打开一个新文档,即打开一个流,并擦除当前文档的内容
语法:document.open(mimetype,replace)
参数:
mimetype:可选。规定正在写的文档的类型。默认值是”text/html”。
replace:可选。当此参数设置后,可引起新文档从父文档继承历史条目。
注1:open()方法将擦除当前HTML文档的内容,开始一个新的文档,新文档用write()方法或writeln()方法编写。
注2:调用open()方法打开一个新文档并且用write()方法设置文档内容后,必须记住用close()方法关闭文档,并迫使其内容显示出来。
注3:属于被覆盖的文档的一部分的脚本或事件句柄不能调用该方法,因为脚本或事件句柄自身也会被覆盖。

2.document.write()   常配合创建iframe使用

功能:页面载入过程中用实时脚本创建页面内容,以及用延时脚本创建本窗口或新窗口的内容。在document被加载完后调用docuemnt.write方法时将会自动去触发document.open()。在载人页面后,浏览器输出流自动关闭;在此之后,任何一个对当前页面进行操作的document.write()方法将打开—个新的输出流。它将清除当前页面内容(包括源文档的任何变量或值)。关于document.write()方法还有一点要说明的是它的相关方法document.close()。脚本向窗口(不管是本窗口或其他窗口)写完内容后.必须关闭输出流。在延时脚本的最后一个document.write()方法后面.必须使用document.close()方法关闭输出流,不这样做就不能显示图片和表单。
语法:document.write(content)
参数:
content:必选。字符串,可以是变量或值为字符串的表达式,写入的内容常常包括HTML标记语言

  1. var ifr = document.createElement("iframe");
  2. document.body.appendChild(ifr);
  3. var ifrdoc = ifr.contentWindow.document;
  4. ifrdoc.open();
  5. ifrdoc.write("<BODY>");
  6. ifrdoc.write("<object id='factory' style='display:none' classid='clsid:1663ed61-23eb-11d2-b92f-008048fdd814' ></object> ");
  7. ifrdoc.write("</BODY>");
  8. ifrdoc.close() ;

3.document.close()

功能:close()方法可关闭一个由open()方法打开的输出流,并显示选定的数据。
语法:document.close()
参数:无。
注:该方法将关闭open()方法打开的文档流,并强制地显示出所有缓存的输出内容。如果您使用write()方法动态地输出一个文档,必须记住当你这么做的时候要调用close()方法,以确保所有文档内容都能显示。document.write()不会隐式调用document.close()方法的,否则例2中将不会有This is a new window.内容了一旦调用了close(),就不应该再次调用write(),因为这会隐式地调用open()来擦除当前文档并开始一个新的文档。
在载入页面后,浏览器输出流自动关闭。在此之后,比如延迟脚本setTimeout()或是onload执行的方法,任何一个对当前页面进行操作的document.write()方法将打开—个新的输出流,它将清除当前页面内容(包括源文档的任何变量或值)。

document.write("111")  //111
  1. document.write("111")
  2. document.write("111")  //1111111
  1. document.write("111")
  2. document.close();
  3. document.write("111")  //111
document.open()  //


来自  https://blog.csdn.net/a460550542/article/details/123068746


https://blog.csdn.net/a460550542/article/details/123068746


普通分类: