我的索引html:
<html>
<head>
<title>index</title>
<script src="jquery.js"></script>
</head>
<body>
<h1>Index</h1>
<hr/>
<iframe id="frame"></iframe>
<hr/>
<button id="btn">Click</button>
<script>
$(function(){
window.api = {
fun: function(){alert('index api')}
};
var frame = document.getElementById('frame');
frame.src = 'frame.html';
});
$('#btn').click(function(){
$('#frame').contents().find('body').css('backgroundColor', 'red');
$('#frame').contents().find('#btn').text('lol');
});
</script>
</body>
</html>
在加载frame.html
的 javascript 可以api
通过访问对象parent.api
。
是否可以将 api 对象添加到 frame.html 窗口,以便可以通过window.api
那里访问?(而不是parent.api
)(考虑相同的起源和不同的起源)?
上面的代码确实有效(例如#button
更改背景和标签),但我认为这是因为所有这些文件都在我的电脑上(同源)。我对吗?