PHP+Mysql+Ajax实现淘宝客服或阿里旺旺聊天功能(前台页面)

时间:2017-06-22

实现效果:

PHP+Mysql+Ajax实现淘宝客服或阿里旺旺聊天功能(前台页面)

2、点击发送时的ajax代码:

<script>
 $(".tc").click(function(){
  $("#kuangjia").show();  
 })
  $(".fasong").click(function(){
  var nr=$("#words").val();
  $.ajax({
   url:"qt-speak-cl.php",
   data:{words:nr},
   type:"POST",
   dataType:"TEXT",
   success: function(data){
    if(data==1)
    {
    window.location.href="qt-dh.php" rel="external nofollow" rel="external nofollow" ; 
    }
    else{
     alert("发送内容不能为空!");
    }
    }
  })
 }) 
  $("#dh").click(function(){
  $.ajax({
   url:"qt-yidu-cl.php",
   dataType:"TEXT",
   success: function(data){
//    alert(data);     
    window.location.href="qt-dh.php" rel="external nofollow" rel="external nofollow" ;    
   }   
  })
 })
</script> 

 3、qt-speak-cl.php页面:

<?php
session_start();
require "DBDA.class.php";
$db = new DBDA(); 
$uid = $_SESSION["uid"];
$words =$_POST["words"];
$chtime=date("Y-m-d H:i:s",time());
$jieshou = "zhangsan";
if(!empty($words))
{
$sql="insert into duihua values ('','{$jieshou}','{$uid}','','{$words}',0,'{$chtime}')";
echo $db->query($sql,0);
<em id="__mceDel">}
else
{ 
 echo "发送内容不能为空!";
}
?>
</em>

 如果发送内容为空,则会提示“发送内容不能为空!”

PHP+Mysql+Ajax实现淘宝客服或阿里旺旺聊天功能(前台页面)

前台页面会随不同用户登录显示不同的信息;让王五登录看看:

PHP+Mysql+Ajax实现淘宝客服或阿里旺旺聊天功能(前台页面)

以上所述是小编给大家介绍的PHP+Mysql+Ajax实现淘宝客服或阿里旺旺聊天功能(前台页面),希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!

  • 共2页:
  • 上一页
  • 2/2下一篇
    上一篇:php7基于递归实现删除空文件夹的方法示例 下一篇:深入浅析PHP的session反序列化漏洞问题

    相关文章

    最新文章