如何获取相邻元素的id

发布于 2024-11-29 04:48:58 字数 713 浏览 0 评论 0原文

假设我有一个处理程序,用于放置在两个元素之间或只是填充两个元素之间的空间。所以我的问题是如何获取与处理程序两侧相邻的两个元素 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

殊姿 2024-12-06 04:48:58
$('#vartical_handler').prev().attr('id');
$('#vartical_handler').next().attr('id');

可重复使用功能:

function adjacentElementId(ref) {
    var arr = new Array;
    arr.push({
        'prevId': $(ref).prev().attr('id'),
        'nextId': $(ref).next().attr('id')
    });
    return arr;
}
var arrId = adjacentElementId('#vertical_handler').pop(); // Here you have just send the jquery reference. e.g. `'#vertical_handler'` here
console.log(arrId.prevId);
console.log(arrId.nextId);
$('#vartical_handler').prev().attr('id');
$('#vartical_handler').next().attr('id');

REUSABLE Function:

function adjacentElementId(ref) {
    var arr = new Array;
    arr.push({
        'prevId': $(ref).prev().attr('id'),
        'nextId': $(ref).next().attr('id')
    });
    return arr;
}
var arrId = adjacentElementId('#vertical_handler').pop(); // Here you have just send the jquery reference. e.g. `'#vertical_handler'` here
console.log(arrId.prevId);
console.log(arrId.nextId);
度的依靠╰つ 2024-12-06 04:48:58

您可以参考 jquery api 页面中的 .index() 条目: http://api.jquery.com/ index/

解决方案是:

var i = $('#vertical_handler').index();
$('div').get(i - 1).attr('id');
$('div').get(i + 1).attr('id');

You can refer to the .index() entry in the jquery api page: http://api.jquery.com/index/

The solution would be:

var i = $('#vertical_handler').index();
$('div').get(i - 1).attr('id');
$('div').get(i + 1).attr('id');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文