2011年1月25日 星期二

Google chrome播放音樂

Google chrome版本8.0.522不支援wav音樂檔案播放,但支援mp3音樂檔案。
程式碼
<html>
<title>程式印象</title>
<head>

<script>
function EvalSound(soundobj) {
  document.getElementById("sound").innerHTML="<embed src='"+soundobj+"' hidden=true autostart=true loop=false>"; 
}
</script>
</head>
<body>
<center>
<div id="sound"></div>
<form>
<input type="button" value="Play Sound" onClick="EvalSound('button-10.mp3')">
</form>
此Javascript由<a href="http://programfeelings.blogspot.com/">程式印象</a>提供
</center>
</body>
</html>

沒有留言: