diff --git a/zh/08.2.md b/zh/08.2.md
index 0573488a..114c131c 100644
--- a/zh/08.2.md
+++ b/zh/08.2.md
@@ -47,46 +47,46 @@ WebSocket分为客户端和服务端,接下来我们将实现一个简单的
```html
-
-
-
-
- WebSocket Echo Test
-
-
-
-
+ function send() {
+ var msg = document.getElementById('message').value;
+ sock.send(msg);
+ };
+
+ WebSocket Echo Test
+
+
+