2012-03-18 21 views

回答

2

以下是使用JavaScript的例子。 iframe的

主頁/頁:

function callMasterFunction(){ 
    parent.fnMaster("Hello master"); 
} 
:iframe中

function fnMaster(para1){ 
    alert(para1); 
) 

相關問題