当前位置: 代码迷 >> Java Web开发 >> document.getElementById("form1").onsubmit = check;是什么意思?解决办法
  详细解决方案

document.getElementById("form1").onsubmit = check;是什么意思?解决办法

热度:723   发布时间:2016-04-12 22:09:18.0
document.getElementById("form1").onsubmit = check;是什么意思?
<%--
网站: <a href="http://www.crazyit.org">疯狂Java联盟</a>
author yeeku.H.lee kongyeeku@163.com
version 1.0
Copyright (C), 2001-2014, yeeku.H.Lee
This program is protected by copyright laws.
Program Name:
Date: 
--%>

<%@ page contentType="text/html;charset=GBK" errorPage="error.jsp"%>
<!DOCTYPE html>
<html>
<head>
<meta name="author" content="Yeeku.H.Lee(CrazyIt.org)" />
<meta http-equiv="Content-Type" content="text/html; charset=GBK" />
<title> 聊天页面 </title>
</head>
<body>
<div style="width:780px;border:1px solid black;text-align:center">
<h3>聊天页面</h3>
<p>
<textarea name="textarea" cols="90" rows="30"
readonly="readonly">${requestScope.msg}</textarea> 
</p>
<form name="form1" method="post" action="chat.do" >
<div align="center">
<input name="chatMsg" type="text" size="90"
onclick="document.form1.submit;"/>
<input type="submit" name="Submit" value="发送"/>
</div>
</form>
</div>
<script type="text/javascript">
var input = document.getElementById("chatMsg");
input.focus();

function check()
{
if (input.value == null || input.value == "")
{
alert("请输入聊天信息,不要发送空信息!");
return false;
}
}

function submitChat()
{
document.getElementById("form1").onsubmit();
}

document.getElementById("form1").onsubmit = check;
</script>
</body>
</html>


document.getElementById("form1").onsubmit = check;这个是什么意思?

function submitChat()
{
document.getElementById("form1").onsubmit();
}这个函数又是什么意思?

------解决方案--------------------
document.getElementById("form1").onsubmit = check这句话是设置form1表单的提交按钮的处理函数为check,执行完之后,点form1的提交按钮,就会进入function check中执行,
  相关解决方案