摘要: 1 $(function(){ 2 3 $(“#tagForm input”).keypress( 4 5 function(event){ 6 7 if(event.keyCode == 13){ 8 9 return false;10 11 }12 13 });14 15 }) 阅读全文
posted @ 2011-04-19 11:48 peter cheng 阅读(585) 评论(2) 推荐(1)