jquery封装好的ajax方法
Posted 向北唤醒芬芳
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery封装好的ajax方法相关的知识,希望对你有一定的参考价值。
<script type="text/javascript">
$(function(){
$.ajax({
type: "post",//传递方法
url: "phpToAJAX.php",//数据接口
dataType: "json",//接收格式
success: function(msg)//如果接收成功执行以下
{
var li="";
for(var i =0;i<msg.length-1;i++)//这里是限定10个
{
li+="<li><h2>"+msg[i]['title']+"</h2><p>"+msg[i]['content']+"...<a href='phpArtcle.php?art="+msg[i]['id']+"' target='_blank'>详细</a></p></li>"; }
$("#list").html(li);
},
error:function()//如果接收不成功执行以下
{ console.log("链接错误") } }); });</script>
以上是关于jquery封装好的ajax方法的主要内容,如果未能解决你的问题,请参考以下文章