我需要打开付款系统窗口。窗口通过iFrame打开。在flash(swf)中生成对ExternalInterface的调用
if (ExternalInterface.available) {
ExternalInterface.call("ShowWebSite", "http://myService.com/show_form?app_params=testable_app_params&format=iframe&sig=54222d8a1c2a9412b91bc0abe62e8040&ts=1296285802");
}
设置flash参数:params.wmode =“opaque”;
调用JS函数:
<script laguage='javascript'>
function ShowWebSite(url)
{
//Try any way
document.getElementByID('iFrameID').src=url;
//parent.frames['iFrameID'].location.href=url;
//window.frames.iFrameID.location.href=url;
}
</script>
// to body
<iframe id="iFrameID" width="430" height="400" scrolling="no" style="border: 1px solid #ccc;"></iframe>
一切都应该有效,但窗户没有打开。
答案 0 :(得分:1)
Javascript区分大小写:
document.getElementById()