当做 $.post('actions.php',{ content: 'xxxxxxxxxxxx' }, function(data){});
它工作我得到200 OK。
但是在做的时候:
$.post('actions.php',{ 内容: 转义($('body').html()) }, function(data){});
我得到 403,错误禁止。
知道为什么吗?它在同一个域上,所以我没有违反 SOP。
当做 $.post('actions.php',{ content: 'xxxxxxxxxxxx' }, function(data){});
它工作我得到200 OK。
但是在做的时候:
$.post('actions.php',{ 内容: 转义($('body').html()) }, function(data){});
我得到 403,错误禁止。
知道为什么吗?它在同一个域上,所以我没有违反 SOP。
您可能会遇到后期限制超载。
看看这篇文章: PHP/Apache/AJAX - POST 限制?