gpt4 book ai didi

javascript - SetVariable 在 Firefox 中不起作用

转载 作者:行者123 更新时间:2023-11-30 13:22:50 26 4
gpt4 key购买 nike

我用 Flash Player 实现了一个网页。然后我使用 SetVariable 关键字为 Flash 播放器对象提供参数。

document.getElementById('flashPlayer').SetVariable("player.jsUrl","www.my.com/Songs/a.mp3");

除 Firefox 外,它在 IE 和 Chrome 中运行良好。哪个关键字在 Firefox 中起作用?

P.S 错误是“Error calling method on NPObject!”。

最佳答案

Firefox 只能在 embed 元素上使用此功能,不能在 object 元素上使用。

HTML

<object id="flashPlayer">
<embed id="flashPlayerEmbed">
</object>

Javascript

var player = document.getElementById('flashPlayer');

if(typeof(player.SetVariable) == 'undefined') {
player = document.getElementById('flashPlayerEmbed');
}

player.SetVariable("plyaer.jsUrl", "www.my.com/Songs/a.mp3");

关于javascript - SetVariable 在 Firefox 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9577903/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com