您的位置:首页 > Web前端 > JQuery

jquery+html5 在web页面播放提示音

2015-12-15 23:02 666 查看
<html>
<head>
<title> New Document </title>
<meta name="Generator" content="EditPlus">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
</head>
<script type="text/javascript" src="jquery-1.8.2.min.js"></script>
<script type="text/javascript">
function play(){
if($.browser.msie && $.browser.version=='8.0'){
$('#newMessageDIV').html('<embed src="notify.mp3"/>');
}else{
//IE9+,Firefox,Chrome均支持<audio/>
$('#newMessageDIV').html('<audio autoplay="autoplay"><source src="notify.mp3"'
+ 'type="audio/wav"/><source src="notify.mp3" type="audio/mpeg"/></audio>');
}
}
</script>
<body>
<div id="newMessageDIV" style="display:none">123132</div>
<input type="button" value="dada" onclick="play()"/>
</body>
</html>


以上代码为自己整理,音频文件和jquery见附件
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: