This is a variation on a question asked so many times. Given any element, I want to be able to find any other element after it in the entire document. It can be a sibling but it could also be any other element that occurs afterward. For example, given the following markup,
<div>
<p>Hello</p>
<div>
<p>Foo</p>
<p class="bar">Bar</p>
<p>rawr!</p>
</div>
<p>bop</p>
<input/>
<div>
<p>Another</p>
<div>
<span>something</span>
<p>deep!</p>
</div>
</div>
</div>
<p>last</p>
For the sake of this description, lets say the function I am looking for is called $.fn.nextInDocument
. If I call开发者_StackOverflow中文版ed:
$('.bar').nextInDocument('p'); // <p>rawr</p>
$('.bar').nextInDocument('p').nextInDocument('p'); // <p>bop</p>
Continuing on, it would get <p>Another</p>
, then <p>deep!</p>
and finally <p>last</p>
.
Does something like this exist? I don't care if it is a selector or a function. I just need the functionality.
EDIT Updated the DOM structure to make it a more challenging question yet more clear for what I am looking for.
How about this? It's a generic solution that uses DOM methods to traverse nodes in turn and tests each against the jQuery selector.
jsFiddle: http://jsfiddle.net/PsEdZ/3/
(function($) {
function nextNode(node, omitChildren) {
var sibling, parentNode;
if (!omitChildren && node.hasChildNodes()) {
return node.firstChild;
} else {
sibling = node.nextSibling;
if (sibling) {
return sibling;
} else {
parentNode = node.parentNode;
return parentNode ? nextNode(parentNode, true) : null;
}
}
}
$.fn.nextInDocument = function(selector) {
var node = this[0], $node;
while ( (node = nextNode(node)) ) {
$node = $(node);
if ($node.is(selector)) {
return $node;
}
}
return null;
}
})(jQuery);
This should work. Not really sure it's useful, though...
;(function ($)
{
$.fn.nextInDocument = function (s)
{
var self = this,
next;
do
{
next = self.nextAll(s).first();
self = self.parent();
}
while (self.length && !next.length);
return next;
};
})(jQuery);
Demo: http://jsfiddle.net/mattball/HAFn8/
(function(jQuery) {
jQuery.fn.extend({
nextInDocument: function(a) {
if (jQuery(this).next(a).length === 0) {
//console.log($(this).parent().nextInDocument('p'));
jQuery(this).parent().nextInDocument(a);
}
else
return jQuery(this).next(a);
}
});
})(jQuery);
Here's a POJS version:
function nextInDocument(el, tagName) {
var node, nodes = document.getElementsByTagName('*');
var start = false;
tagName = tagName.toLowerCase();
for (var i=0, iLen=nodes.length; i<iLen; i++) {
node = nodes[i];
if (!start) {
if (node == el) start = true;
} else {
if (node.tagName.toLowerCase() == tagName) {
return node;
}
}
}
}
take look at my code:
HTML
<div>
<p>Hello</p>
<div>
<p>Foo</p>
<p>Fooooo</p>
<p class="bar">Bar</p>
<p>rawr!</p>
</div>
<p>bop</p>
<input/>
<div>
<p>Another</p>
</div>
</div>
<p>last</p>
<a class="show" href="#">!!!</a>
JS
$(function() {
i = 0;
start = 0;
$('p').each(function() {
if ($(this).hasClass('bar')) {
start = i;
}
i++;
});
$('a.show').click( function(){
alert($('p').eq(start+4).text());
});
});
http://jsfiddle.net/mV8pm/
change start+X
and you will get next 'p' tag
精彩评论