13 lines
542 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<title>Socket</title>
</head>
<body onload="InitWS()">
<div><input type="text" id="textin"><button onclick="send()">Submit</button> <button onclick="Broadcast()">Submit to room</button></div>
<input type="text" id="roomid"><button onclick="joinTheRoom()">JOIN</button>
<br />
<div>注意如果您加入房间后将自动退出public房间您将不会收到公开消息但是您可以重新加入到public房间以回复接收</div>
<script src="main.js"></script>
</body>
</html>