hai719 发表于 2010-5-12 17:32:46

请各位大侠看看我这代码到底哪里错了,总是不能实现检测留言内容是否为空!

<BODY topmargin="0" leftmargin="0">
<!--#include file="../public/top.asp" -->
<h3 align="center">填写留言</h3>
<hr width="70%" color="red">
<div align="center">
<form method="post" action="leavewords.asp?act=add"   name="myform1">
<table width="720" border="1" bordercolor="red">
    <tr><td align="center"colspan="2">填写留言</td></tr>
      <tr><td><textarea name="leavecontent" cols="70" rows="15" ></textarea></td></tr>
    <tr><td>
      <input type="submit" name="submit"action="leavewords.asp"value="提交">
      <input type="reset"name="reset" value="重置">
   </td></tr>
</table>
</form>
</div>
<script language="JavaScript">

function VerifyInput()
{
    leavecontent = document.myform1.leavecontent.value;
    if (leavecontent =="")
    {
      alert("请填写留言内容");
      document.myform1.leavecontent.focus();
      return false;
    }   
}
</script>

<!--#include file="../public/bottom.asp" -->
</BODY>

[ 本帖最后由 hai719 于 2010-5-12 17:34 编辑 ]

TIB 发表于 2010-5-12 19:08:03

??这是QTP的代码吗??

xiaoyaoke 发表于 2010-5-13 09:18:28

定义了VerifyInput()却没有调用,怎么去实现检查?
在<input type="submit" name="submit"action="leavewords.asp"value="提交">处加onclick=VerifyInput()诸如此类的调用js
页: [1]
查看完整版本: 请各位大侠看看我这代码到底哪里错了,总是不能实现检测留言内容是否为空!