我试图在没有jquery的情况下找到具有特定标签名称的最近元素。当我点击<th>
时,我希望能够访问该表的<tbody>
。建议?我读过有关偏移的内容,但并没有真正理解它。我应该使用:
假设已经设置为单击了元素
th.offsetParent.getElementsByTagName('tbody')[0]
答案 0 :(得分:94)
很简单:
el.closest('tbody')
除了IE之外的所有浏览器都支持 更新:Edge现在也支持它。
不需要jQuery。
更重要的是,用$(this).closest('tbody')
替换jQuery的$(this.closest('tbody'))
会在未找到元素时显着提高性能。
用于IE的Polyfill:
if (!Element.prototype.matches) Element.prototype.matches = Element.prototype.msMatchesSelector;
if (!Element.prototype.closest) Element.prototype.closest = function (selector) {
var el = this;
while (el) {
if (el.matches(selector)) {
return el;
}
el = el.parentElement;
}
};
请注意,找不到元素时没有return
,当找不到最接近的元素时,有效返回undefined
。
有关详细信息,请参阅: https://developer.mozilla.org/en-US/docs/Web/API/Element/closest
答案 1 :(得分:64)
参加派对的时间很少(非常),但仍然如此。这应该是trick:
function closest(el, selector) {
var matchesFn;
// find vendor prefix
['matches','webkitMatchesSelector','mozMatchesSelector','msMatchesSelector','oMatchesSelector'].some(function(fn) {
if (typeof document.body[fn] == 'function') {
matchesFn = fn;
return true;
}
return false;
})
var parent;
// traverse parents
while (el) {
parent = el.parentElement;
if (parent && parent[matchesFn](selector)) {
return parent;
}
el = parent;
}
return null;
}
答案 2 :(得分:19)
以下是如何在没有jQuery的情况下按标签名称获取最接近的元素:
function getClosest(el, tag) {
// this is necessary since nodeName is always in upper case
tag = tag.toUpperCase();
do {
if (el.nodeName === tag) {
// tag name is found! let's return it. :)
return el;
}
} while (el = el.parentNode);
// not found :(
return null;
}
getClosest(th, 'tbody');
答案 3 :(得分:6)
function closest(el, sel) {
if (el != null)
return el.matches(sel) ? el
: (el.querySelector(sel)
|| closest(el.parentNode, sel));
}
此解决方案使用HTML 5规范的一些最新功能,在旧版/不兼容的浏览器(阅读:Internet Explorer)上使用此功能将需要填充。
Element.prototype.matches = (Element.prototype.matches || Element.prototype.mozMatchesSelector
|| Element.prototype.msMatchesSelector || Element.prototype.oMatchesSelector
|| Element.prototype.webkitMatchesSelector || Element.prototype.webkitMatchesSelector);
答案 4 :(得分:2)
存在标准化的功能:Element.closest。 除IE11之外的大多数浏览器都支持它(details by caniuse.com)。如果您必须定位旧版浏览器,MDN docs还会包含填充。
要查找距离tbody
最近的父th
,您可以这样做:
th.closest('tbody');
如果你想自己编写这个函数 - 这就是我想出的:
function findClosestParent (startElement, fn) {
var parent = startElement.parentElement;
if (!parent) return undefined;
return fn(parent) ? parent : findClosestParent(parent, fn);
}
要按标签名称查找最近的父级,您可以像这样使用它:
findClosestParent(x, element => return element.tagName === "SECTION");
答案 5 :(得分:2)
这是我正在使用的简单功能: -
function closest(el, selector) {
var matches = el.webkitMatchesSelector ? 'webkitMatchesSelector' : (el.msMatchesSelector ? 'msMatchesSelector' : 'matches');
while (el.parentElement) {
if (el[matches](selector)) return el;
el = el.parentElement;
}
return null;
}
答案 6 :(得分:2)
扩展@SalmanPK答案
它允许使用节点作为选择器,在处理鼠标悬停等事件时非常有用。
function closest(el, selector) {
if (typeof selector === 'string') {
matches = el.webkitMatchesSelector ? 'webkitMatchesSelector' : (el.msMatchesSelector ? 'msMatchesSelector' : 'matches');
while (el.parentElement) {
if (el[matches](selector)) {
return el
};
el = el.parentElement;
}
} else {
while (el.parentElement) {
if (el === selector) {
return el
};
el = el.parentElement;
}
}
return null;
}
答案 7 :(得分:2)
要找到特定祖先,我们可以使用:
Element.closest();
此函数将CSS选择器字符串作为参数。然后,它返回当前元素(或元素本身)的最接近的祖先,该祖先与参数中传递的CSS选择器相匹配。如果没有祖先,它将返回null
。
const child = document.querySelector('.child');
// select the child
console.dir(child.closest('.parent').className);
// check if there is any ancestor called parent
<div class="parent">
<div></div>
<div>
<div></div>
<div class="child"></div>
</div>
</div>
答案 8 :(得分:1)
在包含类,ID,数据属性或标记的树中获取最接近的DOM元素。包含元素本身。支持回到IE6。
var getClosest = function (elem, selector) {
var firstChar = selector.charAt(0);
// Get closest match
for ( ; elem && elem !== document; elem = elem.parentNode ) {
// If selector is a class
if ( firstChar === '.' ) {
if ( elem.classList.contains( selector.substr(1) ) ) {
return elem;
}
}
// If selector is an ID
if ( firstChar === '#' ) {
if ( elem.id === selector.substr(1) ) {
return elem;
}
}
// If selector is a data attribute
if ( firstChar === '[' ) {
if ( elem.hasAttribute( selector.substr(1, selector.length - 2) ) ) {
return elem;
}
}
// If selector is a tag
if ( elem.tagName.toLowerCase() === selector ) {
return elem;
}
}
return false;
};
var elem = document.querySelector('#some-element');
var closest = getClosest(elem, '.some-class');
var closestLink = getClosest(elem, 'a');
var closestExcludingElement = getClosest(elem.parentNode, '.some-class');
答案 9 :(得分:0)
下面。
function findNearest(el, tag) {
while( el && el.tagName && el.tagName !== tag.toUpperCase()) {
el = el.nextSibling;
} return el;
}
只能在树下找到兄弟姐妹。使用previousSibling走另一条路 或者使用变量遍历两种方式并返回最先找到的方式。 你得到了一般的想法,但如果你想遍历parentNodes或子节点,如果兄弟姐妹不匹配你也可以使用jQuery。那时候它很容易实现。
答案 10 :(得分:0)
查找最近的Elements childNodes。
closest:function(el, selector,userMatchFn) {
var matchesFn;
// find vendor prefix
['matches','webkitMatchesSelector','mozMatchesSelector','msMatchesSelector','oMatchesSelector'].some(function(fn) {
if (typeof document.body[fn] == 'function') {
matchesFn = fn;
return true;
}
return false;
});
function findInChilds(el){
if(!el) return false;
if(el && el[matchesFn] && el[matchesFn](selector)
&& userMatchFn(el) ) return [el];
var resultAsArr=[];
if(el.childNodes && el.childNodes.length){
for(var i=0;i< el.childNodes.length;i++)
{
var child=el.childNodes[i];
var resultForChild=findInChilds(child);
if(resultForChild instanceof Array){
for(var j=0;j<resultForChild.length;j++)
{
resultAsArr.push(resultForChild[j]);
}
}
}
}
return resultAsArr.length?resultAsArr: false;
}
var parent;
if(!userMatchFn || arguments.length==2) userMatchFn=function(){return true;}
while (el) {
parent = el.parentElement;
result=findInChilds(parent);
if (result) return result;
el = parent;
}
return null;
}
答案 11 :(得分:0)
派对有点晚了,但是当我路过并回答一个非常相似的问题时,我放弃了我的解决方案 - 我们可以说这是JQuery closest()
方法,但是很简单JavaScript的。
它不需要任何pollyfill和它的旧浏览器,IE(:-))友好: https://stackoverflow.com/a/48726873/2816279
答案 12 :(得分:-1)
我认为最容易用jquery捕获的代码:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function () {
$(".add").on("click", function () {
var v = $(this).closest(".division").find("input[name='roll']").val();
alert(v);
});
});
</script>
<?php
for ($i = 1; $i <= 5; $i++) {
echo'<div class = "division">'
. '<form method="POST" action="">'
. '<p><input type="number" name="roll" placeholder="Enter Roll"></p>'
. '<p><input type="button" class="add" name = "submit" value = "Click"></p>'
. '</form></div>';
}
?>
非常感谢。