网页添加提示音,用setInterval
如果一条数据通过审核了,修改数据库中一个值,用户怎么异步动态知道自己的记录通过审核了呢,我是通过音乐和提示的方式。
网页中添加如下代码:
<style> #notify { position: absolute; top: 40px; left: 50%; color: #ffff00; font-size: 14px; } </style> <div id="notify"></div>
js:
<script> $(function() { setInterval(function () { $.post("/Notify/Index", "rnd:Math.random()", function (data) { var val = data.split(‘|‘); if (val[0] == "ok") { $(‘<audio autoplay><source src="/Content/mp3/notify.mp3" type="audio/mp3" /><embed src="/Content/mp3/notify.mp3" type="audio/mp3" /></audio>‘).appendTo("body"); $("#notify").text(val[1]); } }); }, 20000); }); </script>
从后台获取数据,返回格式:"ok|数据发生变化啦"
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。