如何使用JSON通过Ajax将图像与其他JavaScript变量一起发送到PHP并接收。使用简单的JavaScript,而不使用Jquery。 我正在使用
function getFormData(){
var data = {
p_name: document.getElementById("name").value,
p_price: document.getElementById("price").value,
p_detail: document.getElementById("detail").value,
p_image: document.getElementById("image").value, //for image
};
return data;
}