$(function() {
//Indicate here the version of your forum.
var version = "phpbb2";
if(version.toLowerCase() == "phpbb2"){
$(".postdetails img[title='Premium']").closest('.postdetails').parent('td').next('td').addClass("fa_postbody_xy");
$(".postdetails img[title='Junior']").closest('.postdetails').parent('td').next('td').addClass("fa_postbody_xx");
}else if(version.toLowerCase() == "phpbb3"){
$(".postprofile img[title='Male']").closest('.postprofile').prev('.postbody').addClass("fa_postbody_xy");
$(".postprofile img[title='Female']").closest('.postprofile').prev('.postbody').addClass("fa_postbody_xx");
}else if(version.toLowerCase() == "punbb"){
$(".user-info img[title='Male']").closest('.postmain').addClass("fa_postbody_xy");
$(".user-info img[title='Female']").closest('.postmain').addClass("fa_postbody_xx");
}else if(version.toLowerCase() == "invision"){
$(".postprofile img[title='Male']").closest('.post-container').addClass("fa_postbody_xy");
$(".postprofile img[title='Female']").closest('.post-container').addClass("fa_postbody_xx");
}
});
那是我正在使用的代码。现在我想做的是让它而不是 .postdetails img[ id 喜欢去这个 ul 类 .profile_field_list li[text="premium"]
这可能吗?
<ul class="profile_field_list">
<li>Premium Member</li>
</ul>
这就是我想找到的 html,然后按照代码中的说明进行操作...