需要帮助Javascript验证输入文本和日期

时间:2014-02-26 17:44:59

标签: javascript

我希望成为至少8个字符且年龄大于16的有效输入文本,并使用Javascript中的函数排除某些图标

1 个答案:

答案 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吧!)