<html>
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>asp读取表中记录生成json数据</title>
<script>
$(function(){
$("#idcard").blur(function(){
var v = $(this).val();
$("#myname").val("");
$.getJSON("2.asp",{"id":v,"t":Math.random()},function(data){
if(data != ""){
$("#myname").val(data[0].chezhuXm);
}
});
});
});
</script>
</head>
<body>
<table>
<tr>
<td>id:</td><td><input name="chezhuIdcard" type="text" id="idcard" autocomplete=off value="" /></td>
</tr>
<tr>
<td>name:</td><td><input name="myname" type="text" id="myname" autocomplete=off value="" /></td>
</tr>
</table>
</body>
</html>
2.asp的代码如下:
1 【2】 【3】