我想知道如果我的变量大于另一个变量或大于一个数字,我怎么能播放声音。
我还需要声音与 Internet Explorer 兼容,并且该框不可见。
我尝试了很多东西,但一无所获。所以我请求你的帮助。
我想知道如果我的变量大于另一个变量或大于一个数字,我怎么能播放声音。
我还需要声音与 Internet Explorer 兼容,并且该框不可见。
我尝试了很多东西,但一无所获。所以我请求你的帮助。
这是我使用的一个 Javascript 库,名为jPlayer,它是jQuery Javascript 库的插件。
您可以使用您的 PHP 脚本构建一些东西,以便在您的页面中编写这段 Javascript 代码:
$(function() {
$("#audio").jPlayer({ // Selector, in this case the player in not shown
ready: function () {
$(this).jPlayer("setMedia", {
mp3: 'hellmarch.mp3'
}).jPlayer('play'); // Play immediately
},
supplied: 'mp3',
swfPath: ''
});
});
此代码将立即播放名为hellmarch.mp3
.
如果您的等式结果为真,请回显一个 html5 音频标签并使其自动播放。就像是
<audio controls autoplay="autoplay" style="display:none">
<source src="example.ogg" type="audio/ogg">
<source src="example.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>