说不能像老师这样在页面显示自己输入框值的同学注意一下: 经过我的测试, 直接在onmessage中挂载onclick方法是无效的, 需要在window.onload中挂载onclick方法, 也就是说把下面这个代码放进来:
window.onload = function() {
document.getElementById('sendBtn').onclick = function () {
var txt = document.getElementById('sendTxt').value
websocket.send(txt)
}
}
window.onload = function() {
document.getElementById('sendBtn').onclick = function () {
var txt = document.getElementById('sendTxt').value
websocket.send(txt)
}
}
2017-11-22