在html中插入音乐

<embed scr=xxx.mp3> 我想知道xxx 的音频路径哪里弄

<EMBED src=音乐地址 width=300 height=45 type=audio/mpeg loop="-1" autostart="false" volume="0"></EMBED>

解释:其中 width=100 height=40 中的数字分别表示播放器的宽度和高度 ,注意:都选择0将隐藏播放器(隐藏时一定要选择自动播放)
autostart="true"中true或1表示自动播放,false或0表示手动播放
loop="true" 中的true或1表示重复播放,false或0表示只播放一次
src=音乐地址 这里的“音乐地址”,修改为你找到的网络上的音乐地址
温馨提示:答案为网友推荐,仅供参考