jQuery(this).find('title').next().next().next().eq(0).text();?
更好/优雅的方法是什么?
jQuery(this).find('title').next().next().next().eq(0).text(); //THIS WORKS
我尝试使用
jQuery(this).find('title').eq(3) //DOESN't WORK
但它不...
what's the better/elegant way to do this?
jQuery(this).find('title').next().next().next().eq(0).text(); //THIS WORKS
i tried using
jQuery(this).find('title').eq(3) //DOESN't WORK
but it doesnt...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
nextAll().eq(2)
怎么样?这应该是第三项。然后附加.text()
。如果不是这样,您能提供标记吗?What about
nextAll().eq(2)
? That should be the third item. And append.text()
afterwards. If that's not it, can you provide the markup?.eq() 正在处理链中匹配的元素集。 也是如此
查找与 .find('title') 匹配的一组元素中的第四个
。你可能想要的是
.eq() is working on the set of matched elements in the chain. So
is finding the 4th of a set of elements matching .find('title').
what you probably want is