ajax – jQuery发送字符串作为POST参数

前端之家收集整理的这篇文章主要介绍了ajax – jQuery发送字符串作为POST参数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想要一个字符串作为ajax Post参数。

下面的代码

$.ajax({
   type: "POST",url: "http://nakolesah.ru/",data: 'foo=bar&ca$libri=no$libri',success: function(msg){
     alert('wow'+msg);
   }
});

不管用。为什么?

尝试这样:
$.ajax({
    type: 'POST',// make sure you respect the same origin policy with this url:
    // http://en.wikipedia.org/wiki/Same_origin_policy
    url: 'http://nakolesah.ru/',data: { 
        'foo': 'bar','ca$libri': 'no$libri' // <-- the $ sign in the parameter name seems unusual,I would avoid it
    },success: function(msg){
        alert('wow' + msg);
    }
});
原文链接:https://www.f2er.com/ajax/160964.html

猜你在找的Ajax相关文章