下面是我的代码,
var mapForm = document.createElement("form");
mapForm.target = "_blank";
mapForm.method = "POST";
mapForm.action = "delete";
// Create an input
var mapInput = document.createElement("input");
mapInput.type = "hidden";
mapInput.name = "uploaded";
mapInput.value = file.name;
// Add the input to the form
mapForm.appendChild(mapInput);
// Add the form to dom
document.body.appendChild(mapForm);
// Just submit
mapForm.submit();
它确实有效,但是在提交值之后,它会在新窗口中打开操作 URL,因为我已经给出了mapForm.target = "_blank";
,是否可以在不打开任何窗口的情况下提交表单我的意思是它应该留在同一个窗口中,但它不应该转到“删除页面”?,而不是使用ajax ...