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.
对我来说,在沙盒属性中使用时,允许顶部导航不起作用。该链接适用于不同的域。Allow-Forms 对我有用。连连连都没有反应。它不做任何事情。所以,我也想知道链接是否比表单提交更安全?
sandbox="allow-forms 允许顶部导航"
有没有办法在使用沙盒时使链接正常工作并在顶部导航中打开?我尝试了无缝属性但没有用。
设置allow-top-navigation标志将允许您使用<a ... target="_top">链接或window.top.location沙盒内部iframe。
allow-top-navigation
<a ... target="_top">
window.top.location
iframe
您是否有可能尝试通过 JavaScript 调整顶部窗口的位置?如果是这样,您还需要通过allow-scripts沙箱标志允许沙箱内的脚本:<iframe ... sandbox="allow-forms allow-scripts allow-top-navigation"></iframe>适用于我。
allow-scripts
<iframe ... sandbox="allow-forms allow-scripts allow-top-navigation"></iframe>