js获取html对象

  使用js获取html对象有三种方法: getElementById, getElementsByName和getElementsByTagName。

methodargsresult
getElementByIdid单个html对象
getElementsByNamename一组html对象
getElementsByTagNametagName一组html对象

以下是一个html文档片段:

<p id="pa">It is the first paragraph!</p>
<p name="pb">It is the second paragraph!</p>
<p name="pb">It is the third paragraph!</p>
<table border="1">
        <tr>
            <th>Name</th>
            <th>Age</th>
            <th>Gender</th>
        </tr>
        <tr>
            <td>Alice</td>
            <td>22</td>
            <td>female</td>
        </tr>
        <tr>
            <td>Bob</td>
            <td>23</td>
            <td>male</td>
        </tr>
        <tr>
            <td>David</td>
            <td>22</td>
            <td>male</td>
        </tr>
    </table>

    <script>
        var pa = document.getElementById('pa');
        console.log('pa:', pa);
        var ps = document.getElementsByName('pb');
        console.log('ps:', ps);
        var tds = document.getElementsByTagName('td');
        console.log('tds:', tds);
    </script>

下面是该页面内容和打印在控制台上的内容截图:
这里写图片描述

这下就看的清楚了,通过getElementById只能获取指定id的单个html对象。而通过标签的name或者标签的名字就能获取到一组html对象了。

ps: csdn上使用的markdown编辑器好像有些问题,好像不太能支持自定义代码片段。下面对照我本地的md试试看。
这里写图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值