gpt4 book ai didi

jsp - 不允许跨源框架 iframe

转载 作者:行者123 更新时间:2023-12-04 13:00:17 25 4
gpt4 key购买 nike

嗨,我 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>

任何帮助都非常有帮助。

最佳答案

嘿,我找到了问题的解决方案。
问题是因为域被限制为其他域访问,因为他们可以破解这里的信息是 link这解释了跨域策略。

我们可以通过获取 html 内容并将其显示在我们的域中而不是直接访问另一个域来解决这个问题。
这是 link这解释了这一点。

<%@ 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 src="http://code.jquery.com/jquery-1.2.3.min.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>

<script>
var url = 'https://www.google.co.in/?gws_rd=cr&ei=-bmBUo24M6npiAeepICYAg';
$.getJSON('http://whateverorigin.org/get?url=' + encodeURIComponent(url) + '&callback=?', function(data){
var html = ""+data.contents;

/* Replace relative links to absolute ones */
html = html.replace(new RegExp('(href|src)="/', 'g'), '$1="'+url+'/');

$("#siteLoader").html(html);
});
</script>
<div id="siteLoader">
<i>Loading&hellip;</i>
</div>
</body>
</html>

关于jsp - 不允许跨源框架 iframe,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19921676/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com