首页 > 代码库 > html(jsp)如何实现对form提交前进行确认
html(jsp)如何实现对form提交前进行确认
<html>
<head>
<title>Validator</title>
<script type="text/javascript">
function checkForm() {
if (window.confirm("Are you sure you want to sumbit this form?")) {
return true;
}
return false;
}
</script>
</head>
<body>
<form action="2.html" onsubmit="return checkForm()">
Please click the submit button:<br>
<input type="text" name="text" value="http://www.mamicode.com/text"><br>
<input type="submit">
</form>
</body>
</html>
html(jsp)如何实现对form提交前进行确认
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。