摘要:
``` . A B C ``` 阅读全文
posted @ 2015-07-11 18:29
LaoQuans
阅读(240)
评论(0)
推荐(0)
摘要:
```
var str = "" document.addEventListener("keydown", function(e){ console.log(e.keyCode) var ENTER = 13 if(e.keyCode == ENTER){ console.log(str) str = "" return; }... 阅读全文
posted @ 2015-07-11 18:27
LaoQuans
阅读(183)
评论(0)
推荐(0)