1
我試圖從位於從IFRAME更改iframe中的內容使用閃光燈按鈕
這裏外的閃光燈按鈕改變IFRAME SRC是我的代碼
this.contact.onRelease = function() {
navigateToURL(new URLRequest("page2.html", target="myframe"));
};
,但是這是不工作
我試圖從位於從IFRAME更改iframe中的內容使用閃光燈按鈕
這裏外的閃光燈按鈕改變IFRAME SRC是我的代碼
this.contact.onRelease = function() {
navigateToURL(new URLRequest("page2.html", target="myframe"));
};
,但是這是不工作
可以在沒有ExternalInterface
的情況下更改iframe內容,但是您也僅限於我認爲的自己的域。你的代碼幾乎是正確的。 我不知道如果this.contact.onRelease
是去工作,但navigateToURL
應該是這樣的:
navigateToURL(new URLRequest("page2.html"), "myframe");
您不用target=..
分配目標到URLRequest
,也是目標只是一個字符串,等等。
Google'ExternalInterface'。 – Marty
看起來更像是ActionScript 2('this.contact.onRelease')。你有任何錯誤嗎? – putvande