让ExternalInterface与所有浏览器一起工作的优雅方式
我想使用 ExternalInterface
类从 javascript 调用 Flash 影片内的函数。问题是,为了让它在 Firefox 中工作,我需要使用 embed
元素,而其余的我必须获取 object
元素。为了解决这个问题,我为这两个元素提供了不同的 id,并根据用户代理选择其中之一:
function getMovie(movieName) {
alert(navigator.userAgent);
if (navigator.userAgent.indexOf("Firefox") != -1) {
return document["flash_embed"];
} else {
return document["flash_object"];
}
}
这可行,但不是很优雅,并且可能无法与其他浏览器一起使用...你知道更好的吗方法来做到这一点?
I want to call a function inside a Flash movie from javascript, using the ExternalInterface
class. The problem is that to get it to work with Firefox I need to use the embed
element and with the rest I have to get the object
element. To solve it, I gave different ids to that two elements and depending on the user agent I select one or the other:
function getMovie(movieName) {
alert(navigator.userAgent);
if (navigator.userAgent.indexOf("Firefox") != -1) {
return document["flash_embed"];
} else {
return document["flash_object"];
}
}
This works, but it is not very elegant and it may not work with other browsers... Do you know a better way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 swfobject 嵌入您的 Flash 影片,然后使用它来检索正确的 ID。
Use swfobject to embed your flash movie, and then use it to retrieve the correct id.