我以这种方式在文本字段的 onSubmit 事件上调用 javascript 函数:
<form action="#" onsubmit="getTestResults()">
<input class="button2" type="text" name="barcode" >
</form>
和javascript函数是:
function getTestResults(){
$.ajax({
type: "Post",
url : "uploadTestResult.htm",
success : function(response) {
alert(response);
$("#testResultCount0").html(response);
}
});
}
但我收到错误:HTTP 状态 405 - 不支持请求方法 'GET' 我使用类型作为帖子。我不想提交整个表格。这是正确的方式还是他们的任何替代方式?请建议