function disserach_click() {
var username = $(".reach").val();// 获取数据
$.ajax({
type: "GET",
url: http + ‘UserInfo?username=‘ + username, //get传参方法
contentType: ‘application/json‘,
dataType: "json",
success: function (data) {
if (data.state == 1) {
var result = template("disREACHE", data)
$("#indexs").html(""); //清空缓存
$("#indexs").append(result);
}
else {
alert(‘接口获取错误:‘ + data.info);
}
}
});
}