按钮那句要改下
<input type="submit"  value=" 提交 " onclick="return inputcheck();" >

解决方案 »

  1.   

    <form name="addform" action="sendmail.asp" method="post" >
    --
    你没有指定动作,应该为
    <form name="addform" action="sendmail.asp" method="post"  onsubmit="return inputcheck()">
      

  2.   


    <form name="addform" action="sendmail.asp" method="post" 
    onsubmit="return inputcheck();">
    <input type="submit"  value=" 提交 ">
      

  3.   

    sanshisong(三师兄) ( ) 信誉:100  2006-4-26 19:35:02  得分: 0  
     
     
       
    <form name="addform" action="sendmail.asp" method="post" >
    --
    你没有指定动作,应该为
    <form name="addform" action="sendmail.asp" method="post"  onsubmit="return inputcheck()">  
     正解
    onSubmit是属于form的,不是属于submit按钮,并且写法应为所以应写为<form onSubmit="return 函数()">。。</form>