我控制嵌入在另一个域的页面中的iframe的内容。我的iframe中的javascript是否有任何方法可以更改父级的DOM?
例如,我想让我的iframed脚本向父DOM添加一堆html元素。这似乎是一个非常高的命令 - 想法?
修改:存在一种名为“Fragment ID Messaging”的技术,可能是跨域iframe之间进行通信的一种方式。
编辑此外,Firefox 3.5,Opera,Chrome(等)似乎采用了html5 "postMessage" api,它允许在帧,iframe和弹出窗口之间进行安全的跨域数据传输。它就像一个事件系统。 IE8显然支持这个功能,这可能有点令人惊讶。
摘要:不,您无法直接从其他域访问/编辑网页的DOM。但是可以与之进行通信,并且它可以合作进行所需的更改。
答案 0 :(得分:19)
答案 1 :(得分:11)
有可能。
您在编辑中提及postMessage是正确的。对于那些寻找,有一个伟大的向后兼容,javascript唯一的方式跨域通信。简短易用的代码。完美解决方案只要您可以请求修改父母和孩子:
http://www.onlineaspect.com/2010/01/15/backwards-compatible-postmessage/
答案 2 :(得分:5)
是的,你可以。
您可以实现window.postMessage来跨域传递iframe和/或窗口
但是你需要以异步方式完成它。
如果需要同步,则需要围绕这些异步方法实现包装。
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title></title>
<!--
<link rel="shortcut icon" href="/favicon.ico">
<link rel="start" href="http://benalman.com/" title="Home">
<link rel="stylesheet" type="text/css" href="/code/php/multi_file.php?m=benalman_css">
<script type="text/javascript" src="/js/mt.js"></script>
-->
<script type="text/javascript">
// What browsers support the window.postMessage call now?
// IE8 does not allow postMessage across windows/tabs
// FF3+, IE8+, Chrome, Safari(5?), Opera10+
function SendMessage()
{
var win = document.getElementById("ifrmChild").contentWindow;
// http://robertnyman.com/2010/03/18/postmessage-in-html5-to-send-messages-between-windows-and-iframes/
// http://stackoverflow.com/questions/16072902/dom-exception-12-for-window-postmessage
// Specify origin. Should be a domain or a wildcard "*"
if (win == null || !window['postMessage'])
alert("oh crap");
else
win.postMessage("hello", "*");
//alert("lol");
}
function ReceiveMessage(evt) {
var message;
//if (evt.origin !== "http://robertnyman.com")
if (false) {
message = 'You ("' + evt.origin + '") are not worthy';
}
else {
message = 'I got "' + evt.data + '" from "' + evt.origin + '"';
}
var ta = document.getElementById("taRecvMessage");
if (ta == null)
alert(message);
else
document.getElementById("taRecvMessage").innerHTML = message;
//evt.source.postMessage("thanks, got it ;)", event.origin);
} // End Function ReceiveMessage
if (!window['postMessage'])
alert("oh crap");
else {
if (window.addEventListener) {
//alert("standards-compliant");
// For standards-compliant web browsers (ie9+)
window.addEventListener("message", ReceiveMessage, false);
}
else {
//alert("not standards-compliant (ie8)");
window.attachEvent("onmessage", ReceiveMessage);
}
}
</script>
</head>
<body>
<iframe id="ifrmChild" src="child.htm" frameborder="0" width="500" height="200" ></iframe>
<br />
<input type="button" value="Test" onclick="SendMessage();" />
</body>
</html>
Child.htm
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title></title>
<!--
<link rel="shortcut icon" href="/favicon.ico">
<link rel="start" href="http://benalman.com/" title="Home">
<link rel="stylesheet" type="text/css" href="/code/php/multi_file.php?m=benalman_css">
<script type="text/javascript" src="/js/mt.js"></script>
-->
<script type="text/javascript">
/*
// Opera 9 supports document.postMessage()
// document is wrong
window.addEventListener("message", function (e) {
//document.getElementById("test").textContent = ;
alert(
e.domain + " said: " + e.data
);
}, false);
*/
// https://developer.mozilla.org/en-US/docs/Web/API/window.postMessage
// http://ejohn.org/blog/cross-window-messaging/
// http://benalman.com/projects/jquery-postmessage-plugin/
// http://benalman.com/code/projects/jquery-postmessage/docs/files/jquery-ba-postmessage-js.html
// .data – A string holding the message passed from the other window.
// .domain (origin?) – The domain name of the window that sent the message.
// .uri – The full URI for the window that sent the message.
// .source – A reference to the window object of the window that sent the message.
function ReceiveMessage(evt) {
var message;
//if (evt.origin !== "http://robertnyman.com")
if(false)
{
message = 'You ("' + evt.origin + '") are not worthy';
}
else
{
message = 'I got "' + evt.data + '" from "' + evt.origin + '"';
}
//alert(evt.source.location.href)
var ta = document.getElementById("taRecvMessage");
if(ta == null)
alert(message);
else
document.getElementById("taRecvMessage").innerHTML = message;
// http://javascript.info/tutorial/cross-window-messaging-with-postmessage
//evt.source.postMessage("thanks, got it", evt.origin);
evt.source.postMessage("thanks, got it", "*");
} // End Function ReceiveMessage
if (!window['postMessage'])
alert("oh crap");
else {
if (window.addEventListener) {
//alert("standards-compliant");
// For standards-compliant web browsers (ie9+)
window.addEventListener("message", ReceiveMessage, false);
}
else {
//alert("not standards-compliant (ie8)");
window.attachEvent("onmessage", ReceiveMessage);
}
}
</script>
</head>
<body style="background-color: gray;">
<h1>Test</h1>
<textarea id="taRecvMessage" rows="20" cols="20" ></textarea>
</body>
</html>
在这里,您可以修改子项以将postmessages发送给父级。 例如在child.htm中,你做了
window.parent.postMessage("alert(document.location.href); document.location.href = 'http://www.google.com/ncr'", "*");
并且在父级中,您执行(在receiveMessage中)eval(evt.data);
并不是说使用eval是不安全的,所以你会传递一个枚举,并调用你需要放在父页面上的相应函数。
答案 3 :(得分:0)
我猜你会在不使用代理的情况下遇到安全问题。代理可以非常好用。您可以尝试其中之一:
(1)a PHP based proxy(请注意,有用链接之间有很多广告)
(2)Apache .htaccess代理 - 只需在您的域中创建一个子目录proxy
,并在其中放置一个.htaccess
文件,其中包含:
RewriteEngine on
RewriteRule ^(.*)$ http://picasaweb.google.com/$1 [P,L]
将其他域名替换为picasaweb.google.com
我个人更喜欢使用Apache代理
答案 4 :(得分:0)
对于AJAX,服务器可以返回标头Access-Control-Allow-Origin: *
以允许跨域访问。也许它也适用于IFRAME。