最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to gain access to an element on the same level in the DOM? - Stack Overflow

programmeradmin0浏览0评论
<div id="dad">
     <img id="mum">
     <input>
</div>

With jQuery, how could i get access to the input element, get is value or set it for example? I can't work out how to access something on the same level.. and i dont want to be using ID's, just parent/child nodes so i can use the code for loads of dad div's

Thanks!

<div id="dad">
     <img id="mum">
     <input>
</div>

With jQuery, how could i get access to the input element, get is value or set it for example? I can't work out how to access something on the same level.. and i dont want to be using ID's, just parent/child nodes so i can use the code for loads of dad div's

Thanks!

Share Improve this question edited Feb 1, 2015 at 16:26 Deduplicator 45.8k7 gold badges72 silver badges123 bronze badges asked Oct 3, 2009 at 13:22 tarnfeldtarnfeld 26.6k44 gold badges112 silver badges147 bronze badges
Add a ment  | 

6 Answers 6

Reset to default 6

an addition to Zed,

$(this).parent().children('input');

if you give a name to your input field then you can easily select throughout the others,

$(this).parent().children('input[name=my_input]');

then you can give any value as:

$(this).parent().children('input[name=my_input]').val('any value');

Sinan.

var myEl = $("#dad").children(":input");

$(this).parent().children() ?

Try this, to find the first child input element:

jQuery("div").find("input:first")

If i understand question, you would like achieve input from mum leve? So try $("#mum ~ input")...

BTW, great site to search jquery function by category http://visualjquery./ +nice example.

I guess you want to find siblings (node with same depth and same parent and in DOM tree)

$(el).next() - next element (sibling) for all elements in the set
$(el).nextAll - all following siblings
$(el).nextUntil - all following siblings, stop on some condition (not including first "bad match"). Besides, you have next adjacent selector (+) and next sibling selector.

The same about prev, prevAll and prevUntil. And you even have a siblings method. Check this out.

发布评论

评论列表(0)

  1. 暂无评论