摘要: ``` . A B C ``` 阅读全文
posted @ 2015-07-11 18:29 LaoQuans 阅读(239) 评论(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 阅读(182) 评论(0) 推荐(0) 编辑