10-vue移动端项目(websocket的简单案例与创建一个聊天室)
<!doctype html>
<html>
<head>
<title> chat</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font: 13px Helvetica, Arial;
}
form {
background: #000;
padding: 3px;
position: fixed;
bottom: 0;
width: 100%;
}
form input {
border: 0;
padding: 10px;
width: 90%;
margin-right: 0.5%;
}
form button {
width: 9%;
background: rgb(130, 224, 255);
border: none;
padding: 10px;
}
#messages {
list-style-type: none;
margin: 0;
padding: 0;
}
#messages li {
padding: 5px 10px;
}
#messages li:nth-child(odd) {
background: #eee;
}
</style>
</head>
<body>
<ul id="messages"></ul>
<form action="">
<input id="m" autocomplete="off" /><button>Send</button>
</form>
</body>
<!-- 2.导入socket -->
<script src="//"></script>
<!-- 导入jquery -->
<script src="/jquery-3.4."></script>
<script>
$(function () {
// 3. 创建一个socket对象,连接服务器
const socket = io('http://192.168.14.52:3000/')
// 5. 客户端向服务端发送消息
//给form添加一个提交事件
$('form').submit(function (e) {
e.preventDefault(); //阻止默认行为
// io创建的socket对象
socket.emit('passmsg', $('#m').val())
// 清除输入框的内容
$('#m').val('')
return false
})
// 8.客户端接收服务端的消息
socket.on('passmsg', msg => {
//接收到的msg渲染到ul中
// 创建一个li标签
// var li = $('<li>')
// // 给li标签设置内容
// (msg)
// // 将li添加到ul中
// $('#messages').append(li)
$('#messages').append($('<li>').html(msg))
})
})
</script>
</html>