主頁 > 知識(shí)庫 > 添加后臺(tái)list給前臺(tái)select標(biāo)簽賦值簡單實(shí)現(xiàn)

添加后臺(tái)list給前臺(tái)select標(biāo)簽賦值簡單實(shí)現(xiàn)

熱門標(biāo)簽:阿里云 Mysql連接數(shù)設(shè)置 銀行業(yè)務(wù) 服務(wù)器配置 Linux服務(wù)器 電子圍欄 科大訊飛語音識(shí)別系統(tǒng) 團(tuán)購網(wǎng)站
復(fù)制代碼 代碼如下:

$.ajax({
url : "user!findUserList.action",
type : "post",
success: function(data){
var jsonObj=eval("("+data+")");
$.each(jsonObj, function (i, item) {
jQuery("#userList").append("option value="+ item.userId+">"+ item.userRealName+"/option>");
});
},
error: function(text) {}
});

復(fù)制代碼 代碼如下:

public void findUserList() throws IOException {
ListUserModel> roleuserList = userService.findUserList();
String json = JSONArray.fromObject(roleuserList).toString();
writeHtml(json);;
}

復(fù)制代碼 代碼如下:

protected void writeHtml(String strData) {
try {
response.setContentType("text/html; charset=UTF-8");
PrintWriter pw = response.getWriter();
pw.write(strData);
pw.flush();
pw.close();
} catch (IOException e) {
log.error("writeHtml()", e);
}
}

標(biāo)簽:衡水 衢州 萍鄉(xiāng) 大理 棗莊 廣元 江蘇 蚌埠

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《添加后臺(tái)list給前臺(tái)select標(biāo)簽賦值簡單實(shí)現(xiàn)》,本文關(guān)鍵詞  ;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 收縮
    • 微信客服
    • 微信二維碼
    • 電話咨詢

    • 400-1100-266