首先,我的页面中有这个 iframe。
<iframe src="https://192.168.100.87/index.html">
<p>Browser does not support iframe</p>
</iframe>
我的页头标签中有以下脚本。
<head>
<script type="text/javascript">
function callMe(){
alert('called');
}
</script>
</head>
我有来自远程机器的 index.html 的以下代码。
<body>
<input type="button" value="Click" onClick="window.parent.callMe()" />
</body>
如您所见,我正在调用包含 iframe 的主页的函数。但不幸的是我无法调用该函数。
这可能吗,我在这里错过了什么?谢谢