我对HTML很新,所以请耐心等待......我试图通过我网页上的脚本启动音频剪辑,但我很难搞清楚如何做到这一点。以下是我尝试使用的HTML代码的子集:
<body id="body">
<embed id="audio" src="song.wav" loop="true" hidden="true" autostart="true">
<script>
...
if(state==1)
{
document.getElementById("audio").autostart = "true"
}
else
{
document.getElementById("audio").autostart = "false"
}
...
</script>
</body>
我的目标是根据脚本中变量的状态切换此音频。我上面所做的并不起作用,但我觉得我差不多......有什么想法吗?
答案 0 :(得分:0)
试试这个。不要用双引号括起 true和false
if(state==1)
{
document.getElementById("audio").autostart = true;
}
else
{
document.getElementById("audio").autostart = false;
}
答案 1 :(得分:0)
在不引用的情况下应用true或false,或者为0
指定0