admin管理员组文章数量:1344228
<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 badges6 Answers
Reset to default 6an 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.
本文标签: javascriptHow to gain access to an element on the same level in the DOMStack Overflow
版权声明:本文标题:javascript - How to gain access to an element on the same level in the DOM? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743737699a2530312.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论