0

重複の可能性:
ajax 投稿のために jQuery から PHP にデータを渡す

ajax、jqueryを使用して、あるサーバーから別のサーバーに値を渡すにはどうすればよいですか

4

1 に答える 1

3
$.ajax({
    url:'/url/on/other_server',
    type: 'POST',
    contentType:"application/x-www-form-urlencoded",
    data: '{"key":"value"}',
    success: function(data, status) {
       console.log(status);
    },
    error: function(xhr, desc, error) {
       console.log(error);
    }
});

参照: http://api.jquery.com/jQuery.ajax/

于 2012-07-28T05:10:19.117 に答える