jspページがあります-
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
</head>
<body>
<legend>Create new customer</legend>
<script Language="JavaScript">
function checkForm() {
alert("YOU ARE IN checkForm FUNCTION !");
return (false);
}
</script>
<form action="CreateCustomerServlet" method="GET" onsubmit="checkForm">
// form fields ...
<input type="submit" value="Create customer" />
</form>
</body>
</html>
このページをサーバーで実行してsubmit
ボタンを押すと、無視checkForm
されて入力されないことがわかり、直接に移動しCreateCustomerServlet
ます。
私の目標は、それを押すとsubmit
に移動しcheckForm
、checkForm
戻るtrue
だけの場合はに移動することCreateCustomerServlet
です。この目標を達成するために何を変更する必要がありますか?