2013-02-01 98 views
1

可能重複:
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> 
+0

結算這個職位:http://stackoverflow.com/questions/2161388/iframe-function-calling-from-iframe-to-parent-page-javascript-function – kylemac

回答

0

我剛剛複製了你的代碼,並且它工作正常。

+0

謝謝你,我在本地測試它(從我的電腦),它不工作。我把它上傳到我的測試服務器上,它工作,所以顯然它不能在本地運行。 – live2create

+0

現在,我試圖在WordPress中使用該代碼,它不再工作。所以問題不是來自JavaScript,而是來自WordPress的結局。我感謝您的幫助! – live2create

0

我測試,運行?請詳細寫出錯誤信息。
還有一個問題,「frameborder」不允許在html5中使用。我刪除它。