https://cnodejs.org/topic/56ef3edd532839c33a99d00e 前端资源

ajax实例使用

<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script type="text/javascript">
$(function(){
var TEST = {
    test:function() {
            //var requestUrl=GLOBAL.WEBSITE+"client/newspaper/getNewspaper.html?callback=?";
            var requestUrl="http://121.199.44.182:8090/client/newspaper/getChannel.html?callback=?";
            $.ajax({
                type : "post",
                async:true,
                url : requestUrl,
                data : "typeid=2&channelid=7",
                dataType : "jsonp",
                success :function(data){
                    console.log("-------------success");
                    console.log(data);
                    for(var i=0;i<data.length;i++){
                        console.log(data[i].id);
                        console.log(data[i].name);
                    }
                },
                error:function(data){
                    console.log("error:"+data[0]);
                }
            });
    },
};

TEST.test();
});
</script>

//用对象的方式传递参数 

var requestUrl="http://192.168.1.1/expai_data/counter?";
$.ajax({
    type : "post",
    async:true,
    url : requestUrl,
    data : "product="+product+"&name="+consignee+"&address="+address+"&phone="+phone+"&content="+content+"&step="+step+"&cpmc="+cpmc+"&src="+src,
    /*
    data:{
        product : product,
        name : consignee,
        address : address,
        phone : phone,
        content : content,
        step : step,
        cpmc : cpmc,
    },*/
    dataType : "jsonp",
    success :function(data){
        //console.log("--------(xxxxx)-----success");
    },
    error:function(data){
        //console.log("error: (xxxxx)");
    }
});
pasting

 

posted @ 2016-03-29 17:43  乐淘淘zzxh  阅读(116)  评论(0编辑  收藏  举报