小知识点,
1.document.write()方法:
如果document.write()在一个事件中或window.οnlοad=function(){}这个function里,
那么document.write()会做两件事:先清空html内容,然后再写入write()里的代码。
2.关于document.getElementById('xxx');的用法,如果document.getElementById('xxx')写在function外面
就获取不到任何数据,即返回值为null。具体例子如下:
无标题文档
具体的解决办法如下,即把document.getElementById('xxx');写在function()里面,具体如下:
无标题文档