DW如何自动播放音乐(文字显示开始和暂停)?
这个和dw没关系。这就是你说的html语言,可以通过音频标签来实现。至于点击按钮,对应的响应是通过js调用音频标签提供的播放和暂停方法,文本显示也是由js实现的。
具体代码如下:
& lt脚本src= "。/jquery . min . js " & gt;& lt/script & gt;
& ltaudio id = " test 1 " autoplay = " autoplay " loop = " loop " preload = " auto " src = " your MP3 file path " > & lt;/audio & gt;
& ltspan id = " mycontrl " >中止
& lt脚本& gt
$(" # my control ")。单击(函数(){
如果($(这个)。html()== "暂停"){
$("#test1")[0]。pause();
$(这个)。html(“开始”);
}否则{
$("#test1")[0]。play();
$(这个)。html(“暂停”);
}
});
& lt/script & gt;