0

我有一个 HTML 联系表,我需要以某种方式对其进行验证。

如果没有填写任何字段,我更愿意在留空的字段下方显示“必填字段”字样,而不是在 JavaScript 中提醒用户。

这是我的联系表格contact.html

<form id = "myForm" action="contact.php" method="post">

<label for="name">Name:</label>
<input type="text" name="name" id="name" value="" tabindex="1" />


<label for="name">Email:</label>
<input type="text" name="email" id="email" value="" tabindex="1" />


<input type="submit" value="Submit" class="button" />
</form>

这是我的 PHP 表单contact.php(除了验证之外的所有内容都省略了):

//Validation... I am building up an error message string to alert the user at the end (omitted) 

$errormessage = '';

if(!isset($_POST['name']) || strlen($_POST['name']) < 1){
$errormessage .= 'You have not entered your Name\n';
}

if(!isset($_POST['email']) || strlen($_POST['email']) < 1){
$errormessage .= 'You have not entered your Email Address\n';
}

if($errormessage != ''){ ?>

<script language="javascript" type="text/javascript">
    alert('<?php echo "$errormessage" ?>');
    window.location = 'contact.html';
</script>

<?php } 


else {

$mail_to = 'info@email.co.uk';
$subject = 'Message from a site visitor '.$field_name;

$body_message = 'From: '.$field_name."\n\n";
$body_message .= 'E-mail: '.$field_email."\n\n";



$headers = 'From: '.$field_email."\r\n";
$headers .= 'Reply-To: '.$field_email."\r\n";

$mail_status = mail($mail_to, $subject, $body_message, $headers);

}

如您所见,我当前的验证在 PHP 中建立了一个字符串,该字符串将在最后提醒用户(省略)但是我想通过在 HTML 字段下方显示字符串“必填字段”来替换此方法留空。

4

2 回答 2

2

如果您可以使用某些 html5 功能,另一种选择是在输入上设置所需的属性。

必需的

此属性指定用户必须在提交表单之前填写一个值。当 type 属性为隐藏、图像或按钮类型(提交、重置或按钮)时,不能使用它。:optional 和 :required CSS 伪类将酌情应用于该字段。

取自https://developer.mozilla.org/en-US/docs/Web/HTML/Element/Input

所以你的html会变成:

<form id = "myForm" action="contact.php" method="post">

<label for="name">Name:</label>
<input type="text" name="name" id="name" value="" tabindex="1" required />


<label for="name">Email:</label>
<input type="text" name="email" id="email" value="" tabindex="1" required />


<input type="submit" value="Submit" class="button" />
</form>
于 2013-08-30T15:06:41.083 回答
1

我想在不偏离您的方法的情况下回答您的问题。

如果contact.html 可以被php 解析,或者它被简单地更改为contactform.php,您可以向它发送一个查询字符串,指示哪些字段有错误并在它们下方显示一条消息。

联系表格.php

<form id = "myForm" action="contact.php" method="post">

<label for="name">Name:</label>
<input type="text" name="name" id="name" value="" tabindex="1" />
<?php if (isset($_GET['name']) && $_GET['name'] == 1) { 
    echo '<br/>This field is required.'; 
} ?>


<label for="name">Email:</label>
<input type="text" name="email" id="email" value="" tabindex="1" />
<?php if (isset($_GET['email']) && $_GET['email'] == 1) { 
    echo '<br/>This field is required.'; 
} ?>

联系人.php

$error = FALSE;

$errors = array();

if(!isset($_POST['name']) || strlen($_POST['name']) < 1){
    $error = TRUE;
    $errors[] = 'name=1';
}

if(!isset($_POST['email']) || strlen($_POST['email']) < 1){
    $error = TRUE;
    $errors[] = 'email=1';
}

$geterrors = (count($errors) > 1 ? implode('&',$errors) : $errors[0]);

if($error){ ?>

<script language="javascript" type="text/javascript">
    window.location = 'contactform.php?<?php echo $geterrors; ?>';
</script>

...
于 2013-08-30T15:55:58.493 回答