我有一些 JQuery 代码可以在桌面上的 Chrome 和 Firefox 中正常工作,但是当我在 Galaxy Nexus 10 上的 chrome 中测试它时不起作用。有什么想法为什么这不起作用?
$(document).ready(function() {
var babySpeech = document.createElement('audio');
babySpeech.setAttribute('src', 'myurlishere');
babySpeech.setAttribute('autoplay', 'autoplay');
babySpeech.addEventListener("load", function() {
babySpeech.play();
}, true);
});