admin管理员组文章数量:1345032
I got jq code I need to convert to ->js<-. For me it doesn't make sense (cause jq is js), code is longer, it's time consuming (I'm not programmer) and give exactly the same effect... not to mention browser patibility. But...
I want to select all link (a) elements inside lists (li) iterate over them, change values and so on.
In jq one simple line $('li').find('a'); and it works even if there is something more between li and a like:
<li>
<div>
<a href=''>inside div</a>
</div>
</li>
what is the equivalent of jq code in plain js? I did try querySelector querySelectorAll, filter etc. to no avail (for me it works only when a is a directly child of li).
BTW there is an excellent page I did find when searching for answers - but I still having trouble with this... so any suggestion are appreciated.
I got jq code I need to convert to ->js<-. For me it doesn't make sense (cause jq is js), code is longer, it's time consuming (I'm not programmer) and give exactly the same effect... not to mention browser patibility. But...
I want to select all link (a) elements inside lists (li) iterate over them, change values and so on.
In jq one simple line $('li').find('a'); and it works even if there is something more between li and a like:
<li>
<div>
<a href=''>inside div</a>
</div>
</li>
what is the equivalent of jq code in plain js? I did try querySelector querySelectorAll, filter etc. to no avail (for me it works only when a is a directly child of li).
BTW there is an excellent page I did find when searching for answers - http://youmightnotneedjquery./#contains_selector but I still having trouble with this... so any suggestion are appreciated.
Share Improve this question edited Mar 5, 2017 at 12:48 webmasternewbie asked Mar 5, 2017 at 12:41 webmasternewbiewebmasternewbie 1671 gold badge2 silver badges16 bronze badges 3- try this $('li a'). – shafiq.rst Commented Mar 5, 2017 at 12:43
- its jq - I need js code. You probably mean document.querySelectorAll('li > a'); I tried that. Not working. – webmasternewbie Commented Mar 5, 2017 at 12:45
- Hey -- I submitted an answer that appears to be working. Make sure to accept it if it solved the problem. – user7401478 Commented Mar 5, 2017 at 13:00
2 Answers
Reset to default 8You are looking for document.querySelectorAll()
. This allows to fetch all elements in similar manner CSS do. So, for example, if you want to get all <a>
inside of <li>
, your query would naturally be li a
, then use document.querySelectorAll("li a")
.
This function returns a NodeList of elements, and you need to iterate through it to get each element. It's like an array -- you use a[i]
to access element with index i
and use a.length
to access the size of the NodeList. Here's an image for visual clarity:
Here's code for your solution:
var a = document.querySelectorAll("li a");
for(var i = 0; i < a.length; i++){
a[i].innerHTML = "If you want to change text of an element";
a[i].style.color = "red";
}
Edit: If you like to convert more jQuery code to Javascript in future, check out jQuery non-minified source and look for the code you want, this might work too.
$("li a").each(function() {
$(this).text("new text");
});
Each for object?
var links = document.getElementById("yourid").getElementsByTagName("a");
for(var i = 0; i < links.length; i++){
do something
}
本文标签: javascriptHow to select all links (a) inside list (li)Stack Overflow
版权声明:本文标题:javascript - How to select all links (a) inside list (li) - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743779004a2537501.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论