IE6和Firefox3.0测试正常
注意:
1.不能用hidden="true"代
不然也会报对象不支持的方法和属性
<embed id="devUnknown"
src="./devUnknown.wav"
width="0"
height="0"
loop="false"
autostart="false">
</embed>
<script type="text/javascript">
function playSound(id)
{
var node=document.getElementById(id);
if(node!=null)
{
node.Play();
}
}
</script>
注意:
1.不能用hidden="true"代
[/code]替width="0"和"height=0"(这也是比较奇怪的地方:hidden属性应该indicating whether the embedded object is invisible.但一旦用hidden属性无法播放声音)
2.请勿写成
[code="java"]
function playSound(id)
{
var node=document.getElementById(id);
if(node!=null)
{
if(node.Play)
node.Play()
}
}
不然也会报对象不支持的方法和属性