Solve simple problems do not show the picture book "system maintenance, the picture temporarily unable to load"

First, if you are a Chrome browser kernel, or Firefox firefox browser.

If you are a Chrome browser kernel, press the keyboard "F12" key, it will pop developer tools, as shown below:

Of course, you can also use the keyboard shortcut "Ctrl + Shift + J", shortcut keys, positioned directly next to Developer Tools "Console" section.

Copy the following JavaScript code and paste it into developer toolbar "Console" within

$.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");

Paste Code renderings

Press the Enter key "Enter", the picture will be normal at this time of the page shows.


FIG follows effect, not previously performed:

When executed

After execution

Guess you like

Origin www.cnblogs.com/gobyte/p/10977351.html