javascript中的document.open()方法使用介绍
更新时间:2013年10月09日 16:40:18 作者:
document.open()方法打开一个新的文档并用document.write()方法编写文档的内容,下面有个不错的示例,大家可以感受下
document.open()方法打开一个新的文档,并用document.write()方法编写文档的内容,然后用document.close()方法关闭文档操作,使其内容显示出来。
例如:
<script type="text/javascript">
window.onload=hello;
function hello(){
var msg = "JavaScript真好玩!";
document.open();
document.write(msg);
document.close();
}
</script>
例如:
复制代码 代码如下:
<script type="text/javascript">
window.onload=hello;
function hello(){
var msg = "JavaScript真好玩!";
document.open();
document.write(msg);
document.close();
}
</script>
相关文章
layui问题之自动滚动二级iframe页面到指定位置的方法
今天小编就为大家分享一篇layui问题之自动滚动二级iframe页面到指定位置的方法,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧2019-09-09JavaScript 程序错误Cannot use ''in'' operator to search的解决方法
下面小编就为大家带来一篇JavaScript 程序错误Cannot use 'in' operator to search的解决方法。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧2017-07-07
最新评论