0

我有 3 个文本框和 1 个文本区域字段。身份证、姓名、地址、联系方式。所有都是为了检查空白字段而编写的java脚本。我是这样做的:

javascript代码:

function checkForm()    
{
var id=document.getElementById("id").value;
var name=document.getElementById("name").value;
var address=document.getElementById("address").value;
var contact=document.getElementById("contact").value;


if(id.length<1 )        
{
alert("Please enter all the informations!");
return false;
}
if(name.length<1 )      
{
alert("Please enter the name!");
return false;
}
if(address.length<1 )       
{
alert("Please enter the address!");
return false;
}
if(contact.length<1 )       
{
alert("Please enter the contact!");
return false;
}

html代码:

<form method="post" action="clients.php" onSubmit="return checkForm()">
  id <input type="text" name="id" id="id">
  name <input type="text" name="name" id="name">
  address <textarea name="address" id="address"> </textarea>
  contact <input type="text" name="contact" id="contact">
  <input type="submit" name="submit" value="Enter">
</form>

除了textarea之外,所有的都在工作。我正在尝试使用其他一些在互联网上创建的代码,但这些代码不起作用。维护序列号(id 然后是名称,然后是地址,然后是联系方式....)我如何检查 textarea 的空白区域?

提前非常感谢。

4

1 回答 1

1

使用修剪功能删除空格

var id=document.getElementById("id").value.trim();
var name=document.getElementById("name").value.trim();
var address=document.getElementById("address").value.trim();
var contact=document.getElementById("contact").value.trim();
于 2012-07-18T14:03:37.400 回答