JS Iframe loader

前端 未结 1 1591
迷失自我
迷失自我 2021-01-14 23:13

I\'m looking for a way to use jQuery/js to show a \'Loading...\' message while an iframe is loading, when the iframe finished to load completely, the \'Loading...\' text sho

1条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-01-14 23:53

    
    
    
    Please wait

    jquery:

    $("iframe").load(function() { $("#loading").toggle()});
    

    0 讨论(0)
提交回复
热议问题