我正在尝试编写一个简单的代码,如果用户单击按钮,就会播放声音。
这是代码:
<script>
function play(){
$("body").append("<embed src='play.mp3' autostart='true' loop='false' width='2' height='0'></embed>");
}
</script>
<form action="" method="post">
<input type="button" onclick="play()" value="click">
</form>