如何发送JavaScript变量数据到php
这个问题在这里已经有了答案:
等待$.post()
成功。
function wl(){
window.location = "http://localhost/file/handler.php";
}
var base64 = this.tobase64(); // store base64 value to this variable
$.post('/js/uploadify/effectsuploadify.php',{
basevalue: base64,
success: wl,
});
POST仅将表单的域的值发送到下一页。 为了将图像发送到下一页,请将其指定给隐藏字体的值,并使用java脚本提交表单。
var form = document.createElement("form");
form.setAttribute("method", "POST");
form.setAttribute("action", "http://localhost/file/handler.php");
var hiddenField = document.createElement("input");
hiddenField.setAttribute("type", "hidden");
hiddenField.setAttribute("name", "image");
hiddenField.setAttribute("value", base64);
form.appendChild(hiddenField);
document.body.appendChild(form);
form.submit();
链接地址: http://www.djcxy.com/p/21921.html