1. ホーム
  2. ajax

[解決済み] jQuery が POST パラメータとして文字列を送信する

2022-10-25 04:31:31

質問

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);
    }
});