Month: October 2017

  • 原生JS 和 原生PHP 长连接 简单实现

    虽然长连接这个东西已经被广泛使用,但是真的想要了解是什么样子的时候,相关的DEMO却很少,所以本人觉得有必要记录一下 html+JS:   <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>sokit demo</title> <link rel="stylesheet" type="text/css" href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.css"/> <style type="text/css"> .msg-container{ height: 300px; overflow-y: scroll; overflow-x: hidden; padding-top: 50px;} .msg-item{padding: 15px; line-height: 1.5em;} .msg-item.right{ background: #;} .msg-item.label{ display: inline-block;} </style> </head> <body> <div class="container"> <div class="text-center">hello mackes</div> <div class="msg-container"> <div class="col-xs-12 form-group"> <div class="col-md-8"> <div…