📜  javascript 最接近的孩子 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:26.609000             🧑  作者: Mango

代码示例1
// Html part
Here is div-01
Here is div-02
Here is div-03
// Js code to get closest var el = document.getElementById('div-03'); var r1 = el.closest("#div-02"); // returns the element with the id=div-02 var r2 = el.closest("div div"); // returns the closest ancestor which is a div in div, here it is the div-03 itself var r3 = el.closest("article > div"); // returns the closest ancestor which is a div and has a parent article, here it is the div-01 var r4 = el.closest(":not(div)"); // returns the closest ancestor which is not a div, here it is the outmost article