欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

javascript中的document.open()方法使用介紹

 更新時(shí)間:2013年10月09日 16:40:18   作者:  
document.open()方法打開一個(gè)新的文檔并用document.write()方法編寫文檔的內(nèi)容,下面有個(gè)不錯(cuò)的示例,大家可以感受下
document.open()方法打開一個(gè)新的文檔,并用document.write()方法編寫文檔的內(nèi)容,然后用document.close()方法關(guān)閉文檔操作,使其內(nèi)容顯示出來。

例如:
復(fù)制代碼 代碼如下:

<script type="text/javascript">
window.onload=hello;
function hello(){
var msg = "JavaScript真好玩!";
document.open();
document.write(msg);
document.close();
}
</script>

相關(guān)文章

最新評論