嗨我2在我的页面中有一个iframe正常工作而另一个没有工作给出错误,因为不允许跨源框架。 示例代码如下:
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org /TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<script type="text/javascript" src="../script/jquery.js"></script>
<title>Cancellation Policy</title>
</head>
<body>
<span>Some text goes here.</span>
<br /><br />
<iframe src="http://www.w3schools.com/"></iframe>
<iframe src="https://www.google.co.in/?gws_rd=cr&ei=-bmBUo24M6npiAeepICYAg"></iframe>
</body>
</html>
任何帮助都非常有帮助。
答案 0 :(得分:-2)
我认为您无法在iframe中打开安全网站。即那些以https://开头的网站无法在iframe中打开。您可以在iframe中打开w3school.com但不能https://twitter.com或https://facebook.com或https://google.com等。
尝试在iframe中打开google.co.in时出现以下错误:
Load denied by X-Frame-Options: https://www.google.co.in/ does not permit cross-origin framing.