layui span绑定form值

span{
display: block;
padding: 9px 5px;
font-weight: 400;
line-height: 20px;
}$.ajax({
url: "/api/xm_bfjh/readByID/" + id,
type: "POST",
contentType: 'application/json', // 设置请求头中的 Content-Type 为 application/json
success: function (response) {
var data = response.data;
if (response.statusCode == 200) {
$("#xmid").html(data[0].xmid);
$("#userxm").html(data[0].userxm);
} else {
layer.msg("操作失败", { icon: 5 });
}
}
});