javascript form onsubmit中的return 后面跟一个函数,其中return 起什么作用。谢谢。。。
<head><metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/></head><body><...
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<form method="post" action="http://www.sina.com" onsubmit="return abc()">
<label><td>英文名:
<input name="textarea" type="text" id="textarea" value="" size="45" />
<input type="submit" name="button" id="button" value="提交" /></td>
<label></label>
</form>
<script>
function abc ()
{
if (isNaN (document.getElementById("textarea").value))
{
return;
}
else
{
return false;
}
}
</script>
</body>
</html>
后面函数中的return false;和return; 我已搞懂,就是onsubmit="return abc()">为什么要加return,其作用是什么。望高手赐教。谢谢啊。 展开
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<form method="post" action="http://www.sina.com" onsubmit="return abc()">
<label><td>英文名:
<input name="textarea" type="text" id="textarea" value="" size="45" />
<input type="submit" name="button" id="button" value="提交" /></td>
<label></label>
</form>
<script>
function abc ()
{
if (isNaN (document.getElementById("textarea").value))
{
return;
}
else
{
return false;
}
}
</script>
</body>
</html>
后面函数中的return false;和return; 我已搞懂,就是onsubmit="return abc()">为什么要加return,其作用是什么。望高手赐教。谢谢啊。 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询