每当 table 行插入到 html 的 table 中时,都会收到声音通知
Get notified with sound whenever the table row get inserted in table of html
我想在 table 中插入行时收到声音通知。该行是从数据库中获取的。当它在客户端的 HTML 页面上打印时,应该生成声音通知。请帮忙解决这个问题issue.Thankyou!!
将此添加到您的 html 内部正文标记中的任意位置。可以更改 src 属性。
<audio id="play" src="http://www.soundjay.com/button/beep-07.wav"></audio>
并在 javascript 中将此代码写在放置行添加功能的位置。
document.getElementById("play").play();
我想在 table 中插入行时收到声音通知。该行是从数据库中获取的。当它在客户端的 HTML 页面上打印时,应该生成声音通知。请帮忙解决这个问题issue.Thankyou!!
将此添加到您的 html 内部正文标记中的任意位置。可以更改 src 属性。
<audio id="play" src="http://www.soundjay.com/button/beep-07.wav"></audio>
并在 javascript 中将此代码写在放置行添加功能的位置。
document.getElementById("play").play();