返回课程

搜索元素

重要性:4

这是包含表格和表单的文档。

如何找到?…

  1. id="age-table" 的表格。
  2. 该表格内的所有 label 元素(应该有 3 个)。
  3. 该表格中的第一个 td(包含“年龄”一词)。
  4. name="search" 的表单。
  5. 该表单中的第一个input
  6. 该表单中的最后一个input

在单独的窗口中打开页面 table.html,并使用浏览器的工具。

有很多方法可以做到。

以下是一些方法。

// 1. The table with `id="age-table"`.
let table = document.getElementById('age-table')

// 2. All label elements inside that table
table.getElementsByTagName('label')
// or
document.querySelectorAll('#age-table label')

// 3. The first td in that table (with the word "Age")
table.rows[0].cells[0]
// or
table.getElementsByTagName('td')[0]
// or
table.querySelector('td')

// 4. The form with the name "search"
// assuming there's only one element with name="search" in the document
let form = document.getElementsByName('search')[0]
// or, form specifically
document.querySelector('form[name="search"]')

// 5. The first input in that form.
form.getElementsByTagName('input')[0]
// or
form.querySelector('input')

// 6. The last input in that form
let inputs = form.querySelectorAll('input') // find all inputs
inputs[inputs.length-1] // take the last one