js中document.all 的用法
1. document.all是什么?
document.all 实质就是文档中所有元素的集合。可以看做一个数组。
2.document.all怎么用?
2.1 根据下标取元素。
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>document.all的用法</title> <script> onload = function () { console.log(document.all); } </script> </head> <body> <h1>h1</h1> <p>段落</p> <input type="text" value="文本框" /> </body> </html>
2.2 根据name/id取元素。
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>document.all的用法</title> <script> onload = function () { //console.log(document.all); console.log(document.all("num", 0).value); console.log(document.all("num", 1).value); console.log(document.all("num", 2).value); console.log(document.all("paragraph").innerHTML); } </script> </head> <body> <h1>h1</h1> <p id="paragraph">段落</p> <input type="text" value="文本框" /> <input type="text" value="1" name="num" /> <input type="text" value="2" name="num" /> <input type="text" value="3" name="num" /> </body> </html>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。