1. 程式人生 > >禁止iframe內的頁面跳轉

禁止iframe內的頁面跳轉

轉載:https://blog.csdn.net/xtgefzhangqing/article/details/64924063

程式碼:


  
  1. <iframe name= "son" src= "https://www.hao123.com" width= "100%" height= "100%" scrolling= "auto" security= "restricted" sandbox= "allow-top-navigation allow-same-origin allow-forms allow-scripts"
    >
  2. </iframe>



sandbox 屬性

"" 應用以下所有的限制。
allow-same-origin 允許 iframe 內容被視為與包含文件有相同的來源。
allow-top-navigation 允許 iframe 內容從包含文件導航(載入)內容。
allow-forms 允許表單提交。
allow-scripts 允許指令碼執行。