可能重複:
Iframe Function Calling From Iframe to parent page javascript function如何從iframe中調用Javascript函數?
我需要從一個iframe運行JavaScript函數(在一個HTML頁面),我也跟着我在網上找到的指示,但我不能讓這行得通。有任何想法嗎?
下面的代碼:
<html>
<head>
<script type="text/javascript">
function testFunction()
{
var jsmessage = "Test succeed.";
alert(jsmessage);
return false;
}
</script>
</head>
<body>
<iframe id="myframe" src="iframe.html" height="260" width="620" frameborder="0"></iframe>
</body>
</html>
而這裏的Iframe.html的代碼:normally.Why你說不能工作
<html>
<body>
<input type="button" onclick="parent.testFunction();" value="Test function">
</body>
</html>
結算這個職位:http://stackoverflow.com/questions/2161388/iframe-function-calling-from-iframe-to-parent-page-javascript-function – kylemac