本文为大家介绍下通过添加后台list怎么实现给前台select标签赋值具体代码如下感兴趣的朋友可以参考下哈复制代码 代码如下: $ajax({ url : "user!findUserListaction" type : "post" success: function(data){ var jsonObj=eval("("+data+")"); $each(jsonObj function (i item) { jQuery("#userList")append("<option value="+ itemuserId+">"+ itemuserRealName+"</option>"); }); } error: function(text) {} }); 复制代码 代码如下: public void findUserList() throws IOException { List<UserModel> roleuserList = userServicefindUserList(); String json = JSONArrayfromObject(roleuserList)toString(); writeHtml(json);; } 复制代码 代码如下: protected void writeHtml(String strData) { try { responsesetContentType("text/html; charset=UTF"); PrintWriter pw = responsegetWriter(); pwwrite(strData); pwflush(); pwclose(); } catch (IOException e) { logerror("writeHtml()" e); } } |