87,989
社区成员
发帖
与我相关
我的任务
分享
<audio id="aud" preload="preload">
<source src="sy.wav" type="audio/wav">
<source src="sy.mp3" type="audio/mpeg">
<!--为了兼容所有浏览器要准备wav和mp3两种格式的文件-->
<embed id="emb" src="sy.mp3" autostart="false" hidden="true">
</audio>
<a id="cc" href="http://www.baidu.com">aaa</a>
<script>
var cc = document.getElementById("cc");
cc.onclick = function () {
if (document.getElementById("aud").play)
document.getElementById("aud").play();
else
document.getElementById("emb").play();
var href = this.href;
setTimeout(function(){
location.href = href;
}, 1000);//1000为音效时长
return false;
}
</script>
<audio id="aud" preload="preload">
<source src="sy.wav" type="audio/wav">
<source src="sy.mp3" type="audio/mpeg">
<!--为了兼容所有浏览器要准备wav和mp3两种格式的文件-->
</audio>
<a id="cc" href="http://www.baidu.com">aaa</a>
<script>
var cc = document.getElementById("cc");
cc.onclick = function () {
document.getElementById("aud").play();
var href = this.href;
setTimeout(function(){
location.href = href;
}, 1000);//1000为音效时长
return false;
}
</script>