我的javascript代码如下所示:
function copysave(){
dojo.io.iframe.send({
form:dojo.byId("formId"),
method: "POST",
//handleAs: "html",
encoding : "utf-8",
url :"/CopyReplace/copysavefirst",
load: function(response) {
txtResponse = response;
alert("respone: "+txtResponse);
console.log(" success : txtResponse"+txtResponse)
},
error: function(error, ioArgs) {
console.log("bulkcopy() ERROR :: " + error);
console.log("bulkcopy() ioArgs :: " + ioArgs);
return error;
}
});
}
我的Html如下所示:
<form enctype="multipart/form-data" id="formId" method="">
<button name="save" id="submitValues" value="Finish" onclick="copysave()" >Finish</button>
如果我点击完成,我可以看到/CopyReplace/copysavefirst
两次点击服务器。
有人可以告诉我怎么做只打一次电话?
此外,它将转到错误部分。