how can i validate year textbox in javascript?
I am using a textbox on my page which is used to e开发者_StackOverflow中文版nter year in yyyy-yyyy
format.
Can you tell how can i validate textbox in this format through javascript??
Thanks in advance...
You can match it with a regular expression:
var pattern = /\d{4}-\d{4}/;
If you are not using any javascript library (like jQuery, etc), Javascript Regular Expressions could be used for validating the input.
精彩评论