我需要有关如何查找特定itemprop的帮助,如果它有特定的输出/文本,它应该更改其他class / div css。
$("span[itemprop='employmentType']").each(function(){
if($(this).text()=='Third Party Job')
{
$('.wpjb-job-apply').css('display','none');
}
});
答案 0 :(得分:0)
试试这个:
$("span[itemprop='employmentType']").each(function(){
if($(this).text()=='Third Party Jobs')
{
$(this).addClass("wpjb-job-apply");
}
});
OR
$("span[itemprop='employmentType']").each(function(){
if($(this).text()=='Third Party Jobs')
{
$(this).css('display','none');
}
});
CSS:
.wpjb-job-apply{
display:none;
}
答案 1 :(得分:0)
怎么样:
$(function() {
$('span[itemprop="employmentType"]').each(function(){
$this = $(this);
if($.trim($this.text() == "Third Party Job"){
$this.addClass("wpjb-job-apply");
}
});
});