- 注册时间
- 2018-10-24
- 最后登录
- 2021-4-20
- 阅读权限
- 10
- 积分
- 4
- 精华
- 0
- 帖子
- 0
|
function search() {
var ypbh = mini.get("ypbh").getValue();
if (ypbh){
$.ajax({
url: "${pageContext.request.contextPath}/medicine/list?ypbh="+ypbh,
dataType: 'json',
async: false,
success: function (data) {
let obj=data.data[0];
for(let key in obj){
$("#"+key + " input").val(obj[key]);
}
},
ondestroy:function (data) {
}
});
}
}
这是我对input赋值的方法 |
|