码迷,mamicode.com
首页 > Web开发 > 详细

js 调用声音提示

时间:2018-09-17 13:37:55      阅读:829      评论:0      收藏:0      [点我收藏+]

标签:ase   ati   ntb   浏览器   obj   length   fun   spl   声音   

function playSound()
{
var borswer = window.navigator.userAgent.toLowerCase();
if ( !!window.ActiveXObject || "ActiveXObject" in window )
{
//IE内核浏览器
var OSPlayer = new ActiveXObject("WMPLayer.OCX");
OSPlayer.url = "http://www.xmf119.cn/static/admin/sounds/notify.wav";
OSPlayer.controls.play();
} else
{
//非IE内核浏览器
var strAudio = "<audio id=‘audioPlay‘ src=‘http://www.xmf119.cn/static/admin/sounds/notify.wav‘ hidden=‘true‘>";
if ( $( "body" ).find( "audio" ).length <= 0 )
$( "body" ).append( strAudio );
var audio = document.getElementById( "audioPlay" );

//浏览器支持 audion
audio.play();
}
}

js 调用声音提示

标签:ase   ati   ntb   浏览器   obj   length   fun   spl   声音   

原文地址:https://www.cnblogs.com/wayne173/p/9661439.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!