本文介绍了jQuery的:找到一个元素下面的元素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在使用jquery创建一个简单的应用程序,在此应用程序中,我可以沿文档拖动元素(DIV).我可以将DIV放置在文档中的任何位置,如果将该DIV放置在另一个元素上方,那么如何找出拖动对象下方的元素的ID是什么,

I am creating a simple application using jquery, in this application I can drag an element(DIV) along the document. I can place the DIV at any position in the document, If I place this DIV above another element how can I find out what is the ID of the element that is below the dragging object,

例如,如果我将拖动的DIV放在元素上,我想知道拖动的DIV下方的元素ID

for example if I place the dragging DIV over an element I want to know the ID of the element below the dragging DIV

感谢日志

推荐答案

如果DIV具有特定的ID或类,则可以使用next()函数(记录在此处).

If you DIV has a specific ID or class you can use the next() function (documented here).

 $('#dragdiv').next()

然后,您可以直接使用该jquery元素或使用attr()来获取其属性(ID等)

Then you can directly work with that jquery element or use attr() to obtain it's attributes (ID, etc)

这篇关于jQuery的:找到一个元素下面的元素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 14:12