1

我正在使用这支。我想做的就是如果帖子中没有图像,那么应该显示默认图像。我使用的 Jquery 是

$(function () {
     $(".post").each(function () {
 var posthead = $(this).find("h2.post-title").text(),
             postlink = $(this).find("h2.posttitle a").attr("href");
       if($(this).find("img:first")>=1){
         var imageSrc=$(this).find("img:first").attr('src');
       }
       else{
         var imageSrc="http://3.bp.blogspot.com/-P5H7BaGibPg/UjVD-0SIs9I/AAAAAAAADFk/l65svtw9IHg/s320/70-photography-2.jpg";
       }
                $(this).replaceWith("<div class='post'><img class='thumb' src='" + imageSrc + "'/><div class='posthead'><h2 class='hometitle'><a href='" + postlink + "'>" + posthead + "</a></h2></div></div>");
     });

 });

根据上述,如果有图像,则其属性 src 应为 var imageSrc,但如果不是,则具有图像的条件应为 var imageSrc。

4

1 回答 1

2

如果要检查图像是否存在,则需要 jQuery 对象的length属性

代替

if($(this).find("img:first")>=1){

为了

if($(this).find("img:first").length>=1){

这是更新的代码笔

于 2013-09-15T06:01:23.823 回答