我想通过某个单元格的值来判断是否发出声音,声音的js是复制的论坛的, 现在的问题是我自己的电脑上预览(360、谷歌浏览器)会有声音,(IE浏览器没声音) 但是在大平板app上预览的时候没有声音,想请你们帮忙解决下。急用!谢谢!! 以下是声音的代码: playSound(); function playSound() { var borswer = window.navigator.userAgent.toLowerCase(); if ( borswer.indexOf( "ie" ) >= 0 ) { //IE内核浏览器 var strEmbed = '<embed name="embedPlay" src="http://10.186.104.104:8075/WebReport/ding.wav" autostart="true" hidden="true" loop="false"></embed>'; if ( $( "body" ).find( "embed" ).length <= 0 ) $( "body" ).append( strEmbed ); var embed = document.embedPlay; //浏览器不支持 audion,则使用 embed 播放 embed.volume = 100; //embed.play();这个不需要 } else { //非IE内核浏览器 var strAudio = "<audio id='audioPlay' src='http://10.186.104.104:8075/WebReport/ding.wav' hidden='true'>"; if ( $( "body" ).find( "audio" ).length <= 0 ) $( "body" ).append( strAudio ); var audio = document.getElementById( "audioPlay" ); //浏览器支持 audion audio.play(); } } |