我有这个基本的HTML结构:
现在我想迭代所有m,但也想知道我是在a还是b.
使用基本的jquery语法,我无法找到它.
$('.m').each(function(index) {
// how do i know if this m is part of a or b ?
});
最佳答案
$(this).parent().hasClass(“a”)或$(this).parent().hasClass(“b”)
原文链接:https://www.f2er.com/jquery/428553.html