如何获取相邻元素的id
假设我有一个处理程序,用于放置在两个元素之间或只是填充两个元素之间的空间。所以我的问题是如何获取与处理程序两侧相邻的两个元素 id 或类。
例如:
#horizontal_handler { width:100%; height:5px; background:url('../pick.png') }
#vertical_handler { width:5px; height:100%; background:url('../pick.png') }
这里我有两个处理程序,我只是放置在两个 div 元素之间,这里如何获取这两个 div 元素的 id。
<div id="top"></div>
<div id="horizontal_handler"></div>
<div id="bottom"> </div>
预期结果应为:顶部、底部
<div id="left"></div>
<div id="vertical_handler"></div>
<div id="right"> </div>
预期结果应为:左侧、右侧
Let say i have a handler which uses to place between two elements OR just fill the space between two elements. So my question is how to get the both element id or class which is just adjacent the both side of handler.
ex.:
#horizontal_handler { width:100%; height:5px; background:url('../pick.png') }
#vertical_handler { width:5px; height:100%; background:url('../pick.png') }
Here i have two handler and i am just placing between two div elements and here how can i get the id of these both div elements.
<div id="top"></div>
<div id="horizontal_handler"></div>
<div id="bottom"> </div>
the expected result should be : top, bottom
<div id="left"></div>
<div id="vertical_handler"></div>
<div id="right"> </div>
expected result should be : left, right
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可重复使用功能:
REUSABLE Function:
您可以参考 jquery api 页面中的 .index() 条目: http://api.jquery.com/ index/
解决方案是:
You can refer to the .index() entry in the jquery api page: http://api.jquery.com/index/
The solution would be: