我尝试了很多次和很多方法来从内部调用该方法,iframe
但尚未成功。请看下面,
main.html :
由两个 iframe 组成iframe-1 与 index.html 链接,我想从中调用 main.html 的方法或想更改第二个 iframe 的 src。
main.html
<html>
<head> </head>
<body>
<iframe id="iframe-1" src="index.html"></iframe>
<iframe id="iframe-2" ></iframe>
</body>
</html>
索引.html
<html> <head>
<script type="text/javascript">
$(document).ready(function(){
// How to access the method of main.html and change the iframe src
});
</script>
</head> <body>
......
</body> </html>
注意:试过了parent.methodName()
,window.parent.methodName()
不行
@EDIT:在 IE 和 MOZILLA 上成功,但在 Chrome 上出现错误(无法调用未定义的方法 'getElementById')