1. 程式人生 > >HTML HTMLCollection對象訪問的三種方式

HTML HTMLCollection對象訪問的三種方式

HTML HTMLCollection對

例:
<form action="" name="lee">
    <input type="text">
</form>
  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)
    輸出:
    <form action="" name="lee">
    <input type="text">
    </form>
    適用對象:
    1、document.all
    2、document.anchors
    3、document.forms
    4、document.images
    5、document.links

HTML HTMLCollection對象訪問的三種方式