成都创新互联网站制作重庆分公司

HTMLHTMLCollection对象访问的三种方式

例:
  1. 通过getElementsByTagName:
    var form = document.getElementsByTagName('form')[0]
    console.log(form)
  2. 通过item(n):
    var form = document.forms.item(0)
    console.log(form)
  3. 通过namedItem(name):
    var form = document.forms.namedItem('lee')
    console.log(form)
    输出:
    适用对象:
    1、document.all
    2、document.anchors
    3、document.forms
    4、document.images
    5、document.links

文章题目:HTMLHTMLCollection对象访问的三种方式
当前网址:http://cxhlcq.com/article/pchsoh.html

其他资讯

在线咨询

微信咨询

电话咨询

028-86922220(工作日)

18980820575(7×24)

提交需求

返回顶部