如何验证和使表单工作?

时间:2014-01-09 09:49:34

标签: forms

我正在尝试验证我的表单,并在提交时将其设为writeToFile(.txt文件),但我似乎无法正确使用,搜索Google寻求帮助,但点击提交按钮时仍然没有任何反应。

        姓名:
    

        业务:
    

        电话:
    

        评论:
    

         


我试过的剧本:

function validateForm()
{
var x=document.forms["commentform"]["fname"]["fcomment"].value;
if (x==null || x=="")

{

  alert("You must enter a Name and Comment");
  return false;
  }
}

1 个答案:

答案 0 :(得分:0)

if( document.commentform.fname.value == "" )
   {
     alert("You must enter a Name");
     return false;
  }
if( document.commentform.fcomment.value == "" )
   {
     alert("You must enter a Comment");
     return false;
  }