如何在第二个位置限制零

时间:2018-01-30 08:35:53

标签: javascript jquery html input

在下面的代码中,文本框在起始位置限制为零。但我想在第一个位置只允许一个零但不超过一个。这是一个例子

例如: - 0.1012400 ==>正确

000.4545000 ==>不正确

0154 ==>正确

00154 ==>不正确



$('input#abc').keypress(function(e){ 
 if (this.selectionStart == 0 && (e.which == 48 || e.which == 46 )){
      return false;
   }
});

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type="text" id="abc">
&#13;
&#13;
&#13;

2 个答案:

答案 0 :(得分:7)

您可以简单地测试一开始是否有2个连续零,如果是,则删除一个:

$('input#abc').on('keypress keydown keyup',function(e){ 
 var v = $(this).val();
 if(v.length >=2 && v[0]=='0' && v[1]=='0') {
    $(this).val(v.substring(1));
 }
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type="text" id="abc">

<强>更新

如果你想在开始时考虑减号,这是一个代码:

$('input#abc').on('keypress keydown keyup', function(e) {
  var v = $(this).val();
  if (v.length >= 2 && v[0] == '0' && v[1] == '0') {
    $(this).val(v.substring(1));
  } else if (v.length >= 3 && v[0] == '-' && v[1] == '0' && v[2] == '0') {
    $(this).val('-' + v.substring(2));
  }
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input type="text" id="abc">

答案 1 :(得分:0)

您可以检查最终字符串,如

$('input#abc').on('change', function () {
     console.log(this.value.indexOf('00') === 0);
});