chrome中的Javascript函数使黑线出现
我使用 JavaScript 函数在单击按钮时播放 mp3 文件。
var soundEmbed = null;
function soundPlay(url) {
if (soundEmbed)
document.body.removeChild(soundEmbed);
soundEmbed = document.createElement("embed");
soundEmbed.setAttribute("src", "/snd/"+url+".mp3");
soundEmbed.setAttribute("hidden", true);
soundEmbed.setAttribute("autostart", true);
document.body.appendChild(soundEmbed);
}
在谷歌浏览器中,当我单击按钮时,会播放声音,但右侧的滚动条变成黑线,并且左侧窗口顶部有一条细细的黑色条带。在firefox和IE上,没问题,没有黑线。
有人知道问题是什么/如何解决吗?
另外,当我在其中放置 soundEmbed.setAttribute("loop", true);
时,它也不会在 chrome 上循环,而在 IE/firefox 上会循环。
I'm using a javascript function to play a mp3 file when I click a button.
var soundEmbed = null;
function soundPlay(url) {
if (soundEmbed)
document.body.removeChild(soundEmbed);
soundEmbed = document.createElement("embed");
soundEmbed.setAttribute("src", "/snd/"+url+".mp3");
soundEmbed.setAttribute("hidden", true);
soundEmbed.setAttribute("autostart", true);
document.body.appendChild(soundEmbed);
}
In google chrome when I click the button, the sound plays but the scrollbar on the right turns into a black line and there is a thin strip of black on the top of the window to the left. On firefox and IE, it is fine, no black lines.
Anyone know what the problem is/how to fix it?
Also when i put a soundEmbed.setAttribute("loop", true);
in there, it doesnt loop on chrome either, while it does with IE/firefox.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保您使用的是最新版本的 Google Chrome。
Make sure you are using the latest possible version of Google Chrome.