JQuery概述
$.ajax
$.post
$.get
回车提交
radio
$().keyup 用于键盘抬起时触发,所以可以用于回车提交
$('#btnInsert').keyup(function (e) { if (e.keyCode == 13) { //13表示回车 } });