Сообщение от Fenec
|
Хочу ограничить ввод в инпут только цифрами, точкой, запятой, минусом.
|
<!DOCTYPE html >
<html >
<head>
<title></title>
<script src="http://code.jquery.com/jquery.min.js" type="text/javascript"></script>
<script language="JavaScript" type="text/javascript">
$(document).ready(function(){
$('.prices').keypress(function(e) {
if (!(e.which==8 || e.which==44 ||e.which==45 ||e.which==46 ||(e.which>47 && e.which<58))) return false;
});
});
</script>
</head>
<body>
<input class="prices" />
</body>
</html>