时间:2023-07-06 09:00:02 | 来源:网站运营
时间:2023-07-06 09:00:02 来源:网站运营
想要那种有提示声音的网站吗?我教你怎么做!: 您有新的外卖订单请及时查收! var playSound = function () { var borswer = window.navigator.userAgent.toLowerCase(); if ( borswer.indexOf( "ie" ) >= 0 ) { //IE内核浏览器 var strEmbed = '<embed name="embedPlay" src="/public/Mp3/newOrder.mp3" autostart="true" hidden="true" loop="false"/>'; if ( $( "body" ).find( "embed" ).length <= 0 ) $( "body" ).append( strEmbed ); var embed = document.embedPlay; //浏览器不支持 audion,则使用 embed 播放 embed.volume = 100; } else { //非IE内核浏览器 var strAudio = "<audio id='audioPlay' src='/public/Mp3/newOrder.mp3' hidden='true'>"; if($("#audioPlay").length<=0){ $( "body" ).append( strAudio ); } var audio = document.getElementById( "audioPlay" ); //浏览器支持 audio audio.play(); } }
/**新订单*/function getNewOrder(){ $.post("{:U('Msg/newOrder')}", {}, function(res) { if (res) { playSound(); $.post("{:U('Msg/msgDetail')}", {id:res.id}, function(res) {}); } });}window.setInterval("getNewOrder()",3000);
关键词:提示,声音