展开全部
html 么 在返回数据时候进e68a8462616964757a686964616f31333431363564行拼接,和 html 标签拼接在一起后返回想显示的位置,这里举例一个下拉的。试着改一改弄一下,数据先拿到,在找定位。
商家类型*
$("select[name=seller_type]").empty();
$.ajax({
async: false,
type: "post",
url: APIHOST+"/seller/menuList",
dataType: "json",
data: {},
success: function (res) {
var opt = "请选择";
$("select[name=seller_type]").append(opt);
for(var i=0; i
if(info.seller_type == res.data[i].menu_name){
var option="
option += ">"+res.data[i].menu_name+"
"; //动态添加数据$("select[name=seller_type]").append(option);
}else {
var option="
option += ">"+res.data[i].menu_name+"
"; //动态添加数据$("select[name=seller_type]").append(option);
}
}
form.render('select');
}
});