关于document.all.item()

来源:互联网 发布:安装linux u盘坏了 编辑:程序博客网 时间:2024/05/16 23:53

document.all.item()是通过元素的name和id来得到名字

<input type="button" name="button1">

document.all.item(“button01”) 可以得到该button按钮

document.all.button1和document.all.item(“button01”) 的作用一样

区别是如果元素的name值是数字的话,如

那么document.all.123会报错,而document.all.item(“123”)就可以了

原创粉丝点击