Regex for AM PM time format for jquery

后端 未结 6 445
耶瑟儿~
耶瑟儿~ 2020-12-09 17:16

I am being frustrated by a regular expression to mask the input field. I want to Limit input to hh:mm AM|PM format and I can\'t get this regex to work.

I use this

6条回答
  •  死守一世寂寞
    2020-12-09 17:55

    the follwing function return (true/false) value

        function CheckTime(HtmlInputElement) {
           var dt = HtmlInputElement.value;
           return (/(0?[1-9]|1[0-2]):[0-5][0-9] ?[APap][mM]$/.test(dt));
    }
    

提交回复
热议问题