$.post('actions.php',{ content: 'xxxxxxxxxxxx' }, function(data){}); を実行する場合
それは動作し、200 OK を取得します。
しかし、行うとき:
$.post('actions.php',{ content: escape($('body').html()) }, function(data){});
403 エラー FORBIDDEN が表示されます。
理由はありますか?同じドメインにあるので、SOP に違反していません。