javascript – 使用Prototype遍历特定的子元素

前端之家收集整理的这篇文章主要介绍了javascript – 使用Prototype遍历特定的子元素前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
给出以下标记.
<div id="example">
  <div>
    <div>
      <input type='hidden'></input>
    </div>
  </div>
</div>

我如何快速得到隐藏的输入元素,给定我有ID为“example”的最顶端的div元素的ID?

我可以躲开它,所以我可以迭代每个子元素,直到我输入,但是,我想改进,并使用原型,只需跳转到给定div的隐藏输入.

谢谢!

解决方法

$$('#example input[type=hidden]').first()
原文链接:https://www.f2er.com/js/153329.html

猜你在找的JavaScript相关文章