ajax实例
Posted 随意随性
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ajax实例相关的知识,希望对你有一定的参考价值。
<script> function ajaxFn(url, htmlNode) { $.ajax({ type: ‘GET‘, url: url, data: {}, dataType: ‘json‘, success: function(result) { var html = ""; for(var i = 0; i < 5; i++) { console.log(result[i].name); html += (‘<li>‘+result[i].name+‘</li>‘) } $(HTMLNode).html(html) }, error: function() { console.log("数据请求失败"); } }) } window.onload = function() { ajaxFn(‘/ganController/xuanhuan.action‘, "#init ul"); } </script>
后端要把集合转换成json格式。
在这里感谢明月大佬(qq185617705)不厌其烦指教。
以上是关于ajax实例的主要内容,如果未能解决你的问题,请参考以下文章