Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将 url 放在一个框架中 - 它会将我重定向到该 url 而不是出现在 iframe 中。我这样做绕过了铬:
<iframe sandbox="allow-forms allow-scripts" src="www.example.com"></iframe>
在 Firefox 上,它仍然让我重新定向。sandbox="allow-forms allow-scripts"火狐有其他的方法吗?
sandbox="allow-forms allow-scripts"
击败帧破坏代码很可能是不可能的。有关更多见解,请参阅此 SO 线程和此研究。我尝试了那里描述的一些方法,它们要么根本不起作用,要么不适用于您提到的网站。
我不太确定您为什么使用“沙盒”,但您是否仅尝试过:
<iframe src="http://www.w3schools.com"></iframe>