some text
other text
just text
my call
I have this element than can be any jquery selector, 1 or more elements:
var x = $("#x");
now I NEED (this is a plugin who will discover inner elements like tabs) to navigate only thru the firsts DIV elements and not its childrends. I'm trying...
$.each($($("div"), x), function() {
alert($(this).html());
});
shows:
1. some text
other text
2. other text
3. just text
$.each($($("div"), x).siblings(), function() {
alert($(this).html());
});
shows:
1. just text
2. some textother text
this is the most approximate, but I need in the correct order. any suggestion ? thanks
ps. because it's a plugin I cant do this.
$("#x", "div....")
I need to do this
#(newselector, x)以上就是JQuery Sub Selector question的详细内容,更多请关注web前端其它相关文章!
相关文章
评论 抢沙发
前端开发相关广告投放 更专业 更精准
联系我们觉得文章有用就打赏一下文章作者
支付宝扫一扫打赏

微信扫一扫打赏
