try:
<input onblur="alert(check(value))">
<script>
function check(v){
var reg=/^(\d{1,2}):(\d{1,2})$/
return reg.test(v)
}
</script>