How to hide “page loading”/“transferring data” indicators and spinners caused by loading a (hidden) iframe

流过昼夜 提交于 2019-11-28 11:10:30

问题


Is there any way to suppress the spinners and "transferring data" indicators that browsers show when a web page is loading?

I'm loading a document into a hidden iframe that will take a long time (10's of minutes). I don't want/need the user to be aware of this - it's just confusing to them to have the page look like it's still loading. SO I'd like to be able to disable all of the "page loading" activity that browsers normally show.


回答1:


I eventually found a solution that will work for us. Instead of loading the document into a hidden iframe, we're using the "htmlfile" object described here: http://cometdaily.com/2007/11/18/ie-activexhtmlfile-transport-part-ii/

This solves the problem on IE platforms. And on non-IE platforms, we can use XMLHttpRequest + CORS + chunk encoding.



来源:https://stackoverflow.com/questions/3623361/how-to-hide-page-loading-transferring-data-indicators-and-spinners-caused-by

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!