[轉(zhuǎn)帖]iframe內(nèi)執(zhí)行JS跳轉(zhuǎn),并且跳轉(zhuǎn)完成后觸發(fā)iframe的onload事件
定義sandbox 的值既可以是一個(gè)空字符串(應(yīng)用所有的限制),也可以是空格分隔的預(yù)定義值列表(將移除特定的限制)。 如果被規(guī)定為空字符串(sandbox=""),sandbox 屬性將會(huì)啟用一系列對(duì)行內(nèi)框架中內(nèi)容的額外限制。 使用方法1. sandbox="" 應(yīng)用所有限制
2. sandbox="allow-same-origin" 允許 iframe 內(nèi)容被視為與包含文檔有相同的來(lái)源。
3. sandbox="allow-top-navigation" 允許 iframe 內(nèi)容從包含文檔導(dǎo)航(加載)內(nèi)容。 可用于禁用外部網(wǎng)站的JS跳轉(zhuǎn)、target="_parent"、target="_top"等
4. sandbox="allow-forms" 允許表單提交。
5. sandbox="allow-scripts" 允許腳本執(zhí)行,即允許iframe運(yùn)行腳本(但不創(chuàng)建彈出窗口)。 可用于禁用外部網(wǎng)站的JS
6. sandbox="allow-popups" 允許彈出窗口(如window.open,target="_blank")。
5. sandbox="allow-scripts" 允許彈出窗口逃離沙箱:允許一個(gè)沙箱文件打開(kāi)新窗口不強(qiáng)制使用沙盒。 若想要允許iframe內(nèi)執(zhí)行JS跳轉(zhuǎn),并且跳轉(zhuǎn)完成后觸發(fā)iframe的onload事件,設(shè)置 sandbox="allow-scripts allow-same-origin" 該文章在 2023/5/17 15:56:15 編輯過(guò) |
關(guān)鍵字查詢(xún)
相關(guān)文章
正在查詢(xún)... |