我在javascript上有这段代码,
var path = 'remote site action.php';
var form = document.createElement("form");
form.setAttribute("method", 'POST');
form.setAttribute("action", path);
var code = "some info";
var hiddenField = document.createElement("input");
hiddenField.setAttribute("type", "hidden");
hiddenField.setAttribute("name", "data");
hiddenField.setAttribute("value", code);
form.appendChild(hiddenField);
document.body.appendChild(form);
form.submit();
不幸的是,我无法将其发布到远程服务器。代码完成了它的工作,但是当我执行它时,远程页面显示访问被拒绝。(您没有权限)(远程服务器/action.php)。我应该更改远程页面的权限参数吗?...有什么建议吗?