后台搜索筛选时,有时候回车生成的表格会乱掉,所以需要禁止下。
代码:
$("#test").keydown(function(e) { if(e.keyCode == 13) { e.preventDefault() } })