サイトはこちらhttp://thomaspalumbo.com/tests/
コード:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>
<script type="text/javascript" src="jquery.jplayer.min.js"></script>
<script type="text/javascript">
function playSound() {
var sounds = new Array(
"bells.mp3"
);
$('#soundDiv').html("<embed src=\""+sounds[Math.floor(Math.random()* (sounds.length+1))]+"\" hidden=\"true\" autostart=\"true\" />");
return false;
};
</script>
</head>
<body>
<button onclick="javascript:playSound()">Button</button>
<div id="soundDiv"></div>
何か助けはありますか?通常、ボタンをクリックしてもサウンドがまだ再生されていると、このエラーが発生します。また、ページをリロードしないと機能を実行するボタンを取得できません。つまり、ページをリロードしたくありません。