?
<input type="text" id="cardNo" name="cardNo" ?onBlur="ajaxTest();"/>
?
function ajaxTest(){
var formParam = $("#form").serialize();//序列化表格内容为字符串 ? ?
? ? $.ajax({ ? ?
? ? ? ? type:'post', ? ? ? ?
? ? ? ? url:'<%=request.getContextPath() %>/read.do?method=jqueryajax', ? ?
? ? ? ? data:formParam, ? ?
? ? ? ? cache:false, ? ?
? ? ? ? dataType:'json', ? ?
? ? ? ? success:function(data){ ? ?
? ? ? ? } ? ?
? ? }); ? ?
}