本文实例讲述了JS(jQuery)实现聊天接收到消息语言自动提醒功能。分享给大家供大家参考,具体如下:
综述
最近在开发一个网页端的客服系统,需求要求聊天双方接收到消息能有语音提醒,并且客服端如果存在未读消息要求每隔五分钟给客服语音提醒一下。客服聊天系统使用PHP的Workerman框架进行开发,由于语音提醒实现的功能一样,故而在本篇博文中从简描述,只进行定时循环提醒的功能记录,不说实时的那个语音提醒,因为思路都是一样的,主要是看如何实现自动播放语音功能。
思路
实时提醒
这个就比较明确了,就是在接收到消息的同时进行语音播放,大家可以根据自己的逻辑进行将代码放到合适的地方。
定时提醒
这个主要首先判断客户是否存在未读的消息,如果存在则语音提醒,如果不存在,则不进行提醒。故而要在HTML页面写一个定时器,每五分钟访问一次接口,查询客服是否存在未读消息,然后在后台开发一个接口用于返回客户是否存在未读消息。
代码实现
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
<!--=======================================--> <!--Created by ZHIHUA·WEI.--> <!--Author: Wei ZhiHua--> <!--Date: 2019/01/09--> <!--Time: 下午 17:26--> <!--Project: ZHIHUA·WEI--> <!--Power:JS实现聊天接收到消息语言自动提醒--> <!--=======================================--> <!DOCTYPE html> <html> <head> <meta http-equiv= "Content-Type" content= "text/html; charset=utf-8" /> <title>JS实现聊天接收到消息语言自动提醒(您有新的消息请注意查收)</title> <!--引入CSS、JS--> <script type= "text/javascript" src= "public/common/js/jquery-1.8.1.min.js" ></script> </head> <style> #audio_click { margin-top: 32px; height: 40px; } #audio_click a { text-decoration: none; background: #2f435e; color: #f2f2f2; padding: 10px 30px 10px 30px; font-size: 16px; font-family: 微软雅黑, 宋体, Arial, Helvetica, Verdana, sans-serif; font-weight: bold; border-radius: 3px; -webkit-transition: all linear 0.30s; -moz-transition: all linear 0.30s; transition: all linear 0.30s; } #audio_click a:hover { background: #385f9e; } </style> <body> <!--dom结构部分--> <div style= "width: 100%;text-align: center" > <!--用来存放item--> <h1>JS实现聊天接收到消息语言自动提醒</h1> <h3>(您有新的消息请注意查收)</h3> <div id= "audio_click" > <a id= "btn_audio" href= "#" rel= "external nofollow" >播放语音</a> </div> <div id= "audio_play" ></div> </div> </body> <script> $( function () { var html = '' ; html += '<audio id="audioPlay">' ; //格式ogg音频地址 html += '<source src="/public/static/layui/newmsg.ogg" type="audio/ogg">' ; //格式mp3音频地址 html += '<source src="/public/static/layui/newmsg.mp3" type="audio/mpeg">' ; //格式wav音频地址 html += '<source src="/public/static/layui/newmsg.wav" type="audio/wav">' ; html += '</audio>' ; //将代码写入到页面中 $(html).appendTo( "#audio_play" ); //轮询ajax检测未读消息,每五分钟 var setTime = setInterval( function () { $.ajax({ type: "post" , url: "{:url('index/getNoReadMsg')}" , //查询客服是否有未读消息 dataType: "json" , success: function (ret) { if (ret.code == 1) { //有则进行播放语音提醒 $( '#audioPlay' )[0].play(); } } }); }, 300000); }); $( "#btn_audio" ).click( function () { //这就代码就是播放语音的关键代码 $( '#audioPlay' )[0].play(); }); </script> </html> |
下载
本源码包文件我已经上传到资源库中,有需要的童鞋可以自行下载,里面包含代码和音频文件。
完整实例代码点击此处本站下载。
之后将代码中相应的资源路径修改之后即可使用。
希望本文所述对大家JavaScript程序设计有所帮助。
原文链接:https://blog.csdn.net/Zhihua_W/article/details/86167006