那将很容易做到。这是一个 PHP 示例:
if($_POST[shouldBeEmpty] == "") {
// the field is empty, so deal with the form submission
}
else {
// you are dealing with a spammer, therefore add to the log file
}
当然,不要将您的字段命名为“shouldBeEmpty”。将其命名为正常的名称,例如“contactNumber”或“message”。