如何获得最接近的元素id属性(How to get the closest element id a

2019-08-16 21:44发布

我试图找到具有id属性最接近的元素,并获得id 。 所述元件可以是<p>, <div>或其他元素。

我试过了

element=$('#test').closest('div[id]').attr('id');

但它只能获得ID如果元素是一个div 。 我想成为更加普遍。 是否有反正这样做呢? 非常感谢!

Answer 1:

你可以摆脱的div完全,并寻找有一个所有元素id属性:

$('#test').closest('[id]').attr('id');


文章来源: How to get the closest element id attribute