5
如何使用jQuery选择第一个父级DIV?
var classes = $(this).attr('class').split(' '); // this gets the current element classes var classes = $(this).parent().attr('class').split(' '); // this gets the parent classes. 在上述情况下的父母是ankor。 如果我想获得$(this)的第一个父级DIV,代码将是什么样? var classes = $(this).div:parent().attr('class').split(' '); // just a quick try. *基本上,我想获取$(this)的第一个父级DIV的类。 谢谢