我想切换嵌入式 mp3 的 src 属性。
<embed id="aplayer" width="10" height="10" src="audio/gong.mp3">
JS
$("#btnPlay").click(function() {
if (mm==0) {
$('#aplayer').attr('src', 'audio/01.mp3');
mm = 1;
}
else {
$('#aplayer').attr('src', 'audio/gong.mp3');
mm = 0;
}
适用于 Firefox(播放新文件),但不适用于 Chrome。
有没有办法在 Chrome 中解决这个问题?