解析 ajax的map

前端之家收集整理的这篇文章主要介绍了解析 ajax的map前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
success:function(res) { $("#rightContentList").empty(); var html = ""; //alert(res.map[key]); for ( var key in res.map) { html += "<h6>"+key+"</h6><hr><ul class='fontSize'>"; for(var i=0;i<res.map[key].length;i++) { html += "<li onmouSEOver='addStyle(this)' onmouSEOut='removeStyle(this)' onclick='getName(this)'>"+res.map[key][i].resourceName+"<input type='hidden' value="+res.map[key][i].pk+"></li>"; } html += "</ul>"; } 原文链接:https://www.f2er.com/ajax/163014.html

猜你在找的Ajax相关文章