我有一个通过 iframe 显示为 facebook pagetab 的页面。如何确保页面按预期显示在 iframe 中?
问问题
116 次
2 回答
3
你的意思是
if (top==self) location.replace("iframewrapper.html?loc="+escape(location.href))
于 2012-09-15T16:28:23.593 回答
1
你不能总是确保,因为你的用户总是可以欺骗浏览器,它就是你想要的。但是你可以试试这个:
if (window!=window.top) { /* In a frame! */ }
else { /* probably reload page and redirect to the page embedding the iframe */ }
于 2012-09-15T16:31:15.650 回答