为了账号安全,请及时绑定邮箱和手机立即绑定

要取 指定索引的ul 里的 所有li 怎么取

要取 指定索引的ul 里的 所有li 怎么取

收到一只叮咚 2018-11-12 13:19:43
要取 指定索引的ul 里的 所有li 怎么取我想这么写var afterUl=document.querySelectorAll('ul')[sy-1];var afterLi=afterUl.querySelectorAll('li');但是下面的一行会报错leilei.html:128 Uncaught TypeError: Cannot read property 'querySelectorAll' of undefined。。。我应该怎么写。。新手求助
查看完整描述

1 回答

?
FFIVE

TA贡献1797条经验 获得超6个赞

实现的方式很多,你可以采用原生JavaScript,也可以用各种js库来实现。
这里采用原生JavaScript整理一个思路,在ul的DOM元素上添加一个id属性,通过document.getElementById取出ul,然后通过getElementsByTagName取出li元素。

代码如下:


<ul id="ul-wrap">

    <li>1</li>

    <li>2</li>

    <li>3</li>

    <li>4</li>

    <li>5</li>

</ul>


var ul_wrap = document.getElementById('ul-wrap');

var li_item = ul_wrap.getElementsByTagName('li');


console.log(ul_wrap);

console.log(li_item);


查看完整回答
反对 回复 2018-12-18
  • 1 回答
  • 0 关注
  • 633 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信