加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

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

发布时间:2020-12-16 03:23:39 所属栏目:百科 来源:网络整理
导读:我想要一个字符串作为ajax Post参数。 下面的代码: $.ajax({ type: "POST",url: "http://nakolesah.ru/",data: 'foo=barca$libri=no$libri',success: function(msg){ alert('wow'+msg); }}); 不管用。为什么? 尝试这样: $.ajax({ type: 'POST',// make su
我想要一个字符串作为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);
    }
});

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读