<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>搜索引擎</title>
<script language="vbscript">
function check()
if document.form1.keyword.value="" then
msgbox("不能为空")
end if
</script>
</head>
<body>
<form name="form1" method="post" action="search.asp">
<table width="240" border="0">
<tr>
<td width="110"><div align="center">关键词:</div></td>
<td width="120"><label>
<input name="keyword" type="text" id="keyword" size="15">
</label></td>
</tr>
<tr>
<td><label>
<input name="radiobutton" type="radio" value="精确" checked>
精确查找</label></td>
<td><label>
<input type="radio" name="radiobutton" value="模糊">
模糊查找</label></td>
</tr>
<tr>
<td colspan="2"><label>
<div align="center">
<input type="submit" name="Submit" value="提交" onClick="check()">
</div>
</label></td>
</tr>
</table>
</form>
</body>
</html>
问题是现在能判断是否是空,能弹出警告,点完警告后,直接转到action的页面了,怎么能不让他转到下个页面啊,然后让焦点自动对到文本框.请高手解决2个问题.1点完确定后不转到下个页 2获取焦点
參考答案:给他个布尔的返回值