在jquery中,我可以将“closest”或Parents()与“hasClass”结合起来,所以它会给我一个最接近给定类的元素,如果它存在于页面上?
var matchingDiv = $(this).closest('div').hasClass('SomeClass')
if ( matchingDiv != null )
{
//we found matching element now manipulate it
}
我将始终拥有一个匹配的 div 元素,或者没有。
谢谢。
最佳答案
var matchingDiv = $(this).closest('div.SomeClass')
if ( matchingDiv.length )
{
// use length to find if there was a match.
// closest() will always return an object.
}
如果这不起作用,也许发布一些html。也许那里有问题?
关于jquery hasClass 匹配元素,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2224385/