真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

JQuery之$.ajaxPOST數(shù)據(jù)

    function postSimpleData() {
        $.ajax({
            type: "POST",
            url: "/Service/SimpleData",
            contentType: "application/json", //必須有
            dataType: "json", //表示返回值類型,不必須
            data: JSON.stringify({ 'foo': 'foovalue', 'bar': 'barvalue' }),  //相當(dāng)于 //data: "{'str1':'foovalue', 'str2':'barvalue'}",            success: function (jsonResult) {
                alert(jsonResult);
            }
        });
    }

表單序列化:
    $.ajax({
        url:options.url,
        type:"POST",
        data:$("#Form1").serialize(),
        success: function(data) {
            if(options.success!=undefined)
            {
                options.success.call(this,data);
            }
        },
        error:function(){
            if(options.error!=undefined)
            {
                options.error.call(this,data);
            }
        }
    });   

分享標(biāo)題:JQuery之$.ajaxPOST數(shù)據(jù)
文章分享:http://weahome.cn/article/ispicj.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部