1

我正在尝试从位于 iframe 外部的 flash 按钮更改 iframe src

这是我的代码

this.contact.onRelease = function() {
    navigateToURL(new URLRequest("page2.html", target="myframe") );
};

但这不起作用

4

1 回答 1

1

可以在没有的情况下更改 iframe 内容,ExternalInterface但我认为您也仅限于自己的域。您的代码几乎是正确的。我不确定是否this.contact.onRelease会起作用,但navigateToURL应该是这样的:

navigateToURL(new URLRequest("page2.html"), "myframe");

您将目标分配给 ,URLRequest而且目标只是一个字符串,所以没有target=...

http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/package.html#navigateToURL()

于 2013-08-12T12:53:46.573 回答