The website is under https protocol and the src inside the iframe is under http protocol and cannot be displayed. Is there any other way to replace the iframe?
天蓬老师2017-05-31 10:43:49
If you have to make the page asynchronous, you can try something called $.load. It can directly load HTML resources to a certain DOM node and should be migrated from your project. The cost is very low.
$.load("#iframe_box","/index.html");