在更改父窗口时阻止IE在IFrame中显示URL,可以通过以下方法实现:
sandbox
属性,并设置为allow-same-origin
。这将允许IFrame中的内容与父窗口共享同一来源,但不会显示URL。
sandbox
属性的其他值,例如allow-forms
、allow-modals
、allow-orientation-lock
、allow-pointer-lock
、allow-popups
、allow-popups-to-escape-sandbox
、allow-presentation
、allow-same-origin
、allow-scripts
、allow-storage-access-by-user-activation
、allow-top-navigation
和allow-top-navigation-by-user-activation
。
window.addEventListener('beforeunload', function(event) {
event.preventDefault();
event.returnValue = '';
});
这些方法可以帮助您在更改父窗口时阻止IE在IFrame中显示URL。
领取专属 10元无门槛券
手把手带您无忧上云