document怎么用( 四 )


if(a===undefined) {document.write("
结束");break;}
else{document.write("<br/>");document.write("第"+i+"个select的id是");document.write(a.id);}
}
</script>
//代码结束
上面的代码会列出页面中所有select的id,获取option的value值就容易了 。
5.document的作用改成这样,你就能看见内容了:<input type="text" id="ff" value="http://www.xuexi88.com/zhishi/I am here"/>
document.write 会先覆盖原来的页面,再向其中写入内容,但是不是又创建了文档不是很清楚 。
w3c组织制定了个文档对象模型DOM,用来规范各种类型的文档的格式,其中包括了你给的html文件 。它用Window对象来表示全局的html文件,用它的子对象document来表示页面上的各种元素,如input,form等,还包含了很多函数,如write()

document怎么用

文章插图