如果span [itemprop = employmentType]具有=特定文本/输出,则为Jquery

时间:2014-08-28 08:03:13

标签: jquery html css if-statement

我需要有关如何查找特定itemprop的帮助,如果它有特定的输出/文本,它应该更改其他class / div css。

 $("span[itemprop='employmentType']").each(function(){
 if($(this).text()=='Third Party Job')
 {
   $('.wpjb-job-apply').css('display','none');
 }
});

2 个答案:

答案 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");
       }
    });
});