标签: browser
是否可以在不使用JS的情况下限制在iframe外部打开网站页面?
使用JS可以做到这一点:
if ( window.location !== window.parent.location ) { // Show website content } else { // Redirect to website where this website embedded }