Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们有一个计划使用 iframe 的 html 页面,但我们不希望其他人将我们的页面用作 iframe。但是我们托管我们的页面,该页面将在不同的域中使用 iframe。
我怎样才能以这种方式限制只有我们的域在 iframe 中获取该页面,而其他域不能?
我正在为此寻找一些 javascript 或 jquery 解决方案。
检查window.parent.location您的域名,如果它不存在重定向浏览器,例如:
window.parent.location
if(window.parent.location.indexOf("myDomain") == 0) good; else window.parent.location = "http://myDomain";