所以我正在使用我在这里找到的这个帖子请求,但是我想知道我是如何使用这个获得回复...
function post_to_url(path, params, method) {
method = method || "post";
var form = document.createElement("form");
form.setAttribute("method", method);
form.setAttribute("action", path);
for(var key in params) {
if(params.hasOwnProperty(key)) {
var hiddenField = document.createElement("input");
hiddenField.setAttribute("type", "hidden");
hiddenField.setAttribute("name", key);
hiddenField.setAttribute("value", params[key]);
form.appendChild(hiddenField);
}
}ody.appendChild(form);
form.submit();
}
提前致谢。
答案 0 :(得分:1)
此代码配置表单并提交。你没有得到任何javascript响应,因为页面重新加载。
尝试使用jQuery: http://api.jquery.com/jQuery.post/
或者简单的javascript AJAX:https://developer.mozilla.org/en/docs/AJAX如果你想自己写整篇文章