Solve "Jane book" Image not problem

Problem: Can not display pictures

6593623-e981f51083e5fd9a.png
image.png

problem solved

  • Use shortcut keys "Ctrl + Shift + J", shortcut keys, located directly to the developer tools "Console" section. Enter the following command and hit Enter to


    6593623-1cc0120ad4cb4e88.png
    image.png

code show as below:

$.each($(".image-loading"),function(i,obj){
    var $o = $(obj);
    var link = $o.attr("data-original-src")
    $o.attr("src",link);
    $o.addClass("illustration");
    $o.removeClass("image-loading");
    var $fu = $(obj.parentNode);

})
    $(".image-view-maintain").removeClass("image-view-maintain");

effect

6593623-6c97b76f8e2e1850.png
image.png

Reproduced in: https: //www.jianshu.com/p/f01124d8dcdf

Guess you like

Origin blog.csdn.net/weixin_34112208/article/details/91178656