$(document).ready(function() {
var $postBG = $('.post .poster-profile img');
$postBG.find("[title='male']")
.closest('tr')
.addClass('male')
.children('td')
.removeClass('row1 row2');
$postBG.find("[title='female']")
.closest('tr')
.addClass('female')
.children('td')
.removeClass('row1 row2');
});
只是试图找出img标题是女性还是男性,然后执行以下代码。我试过
$postBG.attr("male")
尽管有任何帮助,但还是没有用