<input type="text" id="phone" name="phone" value=""> <script> var input = document.getElementById("phone") ; input.oninput = function() { if(this.value[0]==0) return ; this.value = "" ; alert("Начните вводить с нуля") ; } ; </script>