这是我的jquery代码。我需要javascript代码来选择第n个孩子。是否可以使用javascript选择第n个孩子
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$(".gl-testim-text p:nth-child(2)").click(function(){
$(".gl-testim-text p:nth-child(3)").show();
});
});
</script>
答案 0 :(得分:5)
由@ abhitalks评论,您可以使用upstream cluster {
include /etc/nginx/upstream.conf;
}
server {
listen 80;
server_name localhost;
location / {
proxy_pass http://cluster;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}
加querySelector()
选择器
:nth-child()
&#13;
var second = document.querySelector(".content a:nth-child(2)")
console.log(second)
var even = document.querySelectorAll(".content a:nth-child(2n)")
console.log(even)
&#13;
答案 1 :(得分:2)
纯粹的原生和基本
var length = document.body.childNodes.length;
var last_child_of_body = document.body.childNodes[length-1];
这只是最后一个孩子的一个例子。您可以使用任何父代替您的身体
答案 2 :(得分:0)
使用.next()
方法。
您也可以尝试子项遍历方法。