CSS不是一种编程语言。
您必须使用 Javascript 在服务器端甚至客户端验证您的字段。
使用现代浏览器中当前的 HTML5 实现,您可以检查输入的值。但据我所知,您不能仅使用纯 css 检查相同的值。
<input type="password" id="pass" name="pass" required pattern="[A-Z]{3}[0-9]{4}"
title="Password numbers consist of 3 uppercase letters followed by 4 digits."/>
看看约束验证 api
这是一个示例,说明如何使用上述 api 检查电子邮件的相似性。
<label>Email:</label>
<input type="email" id="email_addr" name="email_addr">
<label>Repeat Email Address:</label>
<input type="email" id="email_addr_repeat" name="email_addr_repeat" oninput="check(this)">
<script>
function check(input) {
if (input.value != document.getElementById('email_addr').value) {
input.setCustomValidity('The two email addresses must match.');
} else {
// input is valid -- reset the error message
input.setCustomValidity('');
}
}
</script>