我正在开发一个带有HTML5和jQuery mobile的智能手机网络应用程序,我在我的第5页按钮(5个选项)中有一个地方,所以我想为每个按钮播放不同的哔声。 我怎么能这样做!!
答案 0 :(得分:0)
HTML中的某个地方:
<button id="button1Id">Button 1</button>
设置按钮的监听器,例如:
$("#button1Id").click( function (event) {
//Prevent the default button action (I suppose the default click sound is,
//if it exists on thedevice, is removed by this)
e.preventDefault(event);
//TODO: Insert code for audio file playback here
$.mobile.changePage("destination.html");
}
然后您可以为所有不同的按钮重复此代码。我没有包含音频播放的代码,因为如果您需要帮助,问题就不清楚了。有几种方法可以实现它,例如你可以使用:https://developer.mozilla.org/en-US/docs/HTML/Element/Audio