我希望成为至少8个字符且年龄大于16的有效输入文本,并使用Javascript中的函数排除某些图标
答案 0 :(得分:0)
function validate() {
//Make a selector pointing to your input first
var myInput = document.getElementById('yourInputId').value
//Validate length:
if (myInput.length >= 8) {
//Check for age
if (eval(myInput) >= 16) {
alert('your input is ok!');
}
else {
alert('Minimum age is 16!');
}
}
else {
alert('input too short!');
}
}
P.S。:对于字符排除,您应该跳转到 Regular Expressions
(很多网络上的例子,只有Google吧!)