我正在尝试验证我的表单,并在提交时将其设为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;
}
}
答案 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;
}