国产gaysexchina男同gay,japanrcep老熟妇乱子伦视频,吃奶呻吟打开双腿做受动态图,成人色网站,国产av一区二区三区最新精品

App下載
首頁javascripttableJavascript Element - 如何單擊p元素更改標(biāo)題...

Javascript Element - 如何單擊p元素更改標(biāo)題...

我們想知道如何單擊p元素更改標(biāo)題。...

<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'>
window.onload=function(){
    var table, inputs, arr;
    table = document.getElementById( 'test' );
    inputs = table.querySelectorAll( 'input' );
    arr = [].slice.call( inputs ).map(function ( node ) {
        return node.id; 
    });
    console.log( arr );
}
</script>
</head>
<body>
  <table id="test">
    <tr>
      <td><input id="foo"></td>
      <td><input id="bar"></td>
      <td><input id="baz"></td>
    </tr>
  </table>
</body>
</html>