方法 - htmx.closest()
在给定元素父级中查找最接近的匹配元素,包括元素自身。
参数
- elt - 要根据选择器查找的元素
- selector - 要查找的选择器
例子
// find the closest enclosing div of the element with the id 'demo'
htmx.closest(htmx.find('#demo'), 'div');
在给定元素父级中查找最接近的匹配元素,包括元素自身。
// find the closest enclosing div of the element with the id 'demo'
htmx.closest(htmx.find('#demo'), 'div');