How do I disable scripts in my iframe? [duplicate]

2019-02-22 08:43发布

This question already has an answer here:

I have an iframe that loads a page that I would like to disable the javascripts loading in the iframe loaded page. The loaded page has menu bars, dropdowns, etc. that make the home page that I am loading this iframe from load slow. Is there a way to disable javascript from my iframe page?

I need the javascripts to remain in the page because the visitor can visit the page.

Here is my code for loading the iframe:

<div style="position:absolute; overflow:hidden; width: 800; height:400; left:-170px; top:0px;">
<iframe src="/News/Pages/Default.aspx" style="overflow:hidden; width:100%; height:650;"
      frameborder="0" marginheight="0" marginwidth="0" scrolling="no">
</iframe></div>

If this is not possible, than is there a way to stop/disable the iframe page from loading the .js files. The iframe page loads .js files, no javascript is inline.

2条回答
小情绪 Triste *
2楼-- · 2019-02-22 09:17

Check out the last code example on this page, http://www.iframehtml.com/iframe-scripts.html

Shows a method of stripping JavaScript from the iframe's source file using PHP

查看更多
可以哭但决不认输i
3楼-- · 2019-02-22 09:22

As far as I am aware, I dont think you can disable loading of javascripts in the Iframe. Best way is, avoid script tags in the iframe page.

查看更多
登录 后发表回答