HTML部分:

  1. <div class="abb">
  2. <p class="p"></p>
  3. <img alt="" src="" class="img"/>
  4.  
  5. <p class="p"></p>
  6. <img alt="" src="" class="img"/>
  7.  
  8. <p class="p"></p>
  9. <img alt="" src="" class="img"/>
  10.  
  11. <p class="p">雨转多云</p>
  12. <img alt="" src="" class="img"/>
  13. </div>
JS部分:
  1. <script>
  2. var p = $('.abb .p').filter(function(index) {
  3. return $(this).text().indexOf('雨') >= 0;
  4. })
  5. var pb = $('.abb .p').filter(function(index) {
  6. return $(this).text().indexOf('晴') >= 0;
  7. })
  8. $(p).next().attr("src","http://img.tianqi.com/static/images/tianqi/b1.png")
  9. $(pb).next().attr("src","http://img.tianqi.com/static/images/tianqi/b0.png")
  10. </script>




效果:

雨转多云


说明:

使用.filter来筛选出含有关键词“雨”或者“晴”的元素。然后对应关键词替换标签下面img标签的图片地址。