6

我有一个包含多个字段的 html。其中一个字段只允许数字输入。但是现在我希望当用户将所有字符粘贴到该字段中时,除了删除或删除的数字。

例如用户粘贴:

输入字段中的 $1 234 567 -> 1234567

1.234.567 -> 1234567

1,234,567 -> 1234567

等等

4

3 回答 3

12

使用正则表达式。

<input id="inputBox" name="inputBox" />
<script type="text/javascript">
var inputBox = document.getElementById('inputBox');
inputBox.onchange = function(){
    inputBox.value = inputBox.value.replace(/[^0-9]/g, '');
}
</script>​

或者您可以使用计时器来不断检查该字段。

<input id="inputBox" name="inputBox" />
<input id="inputBox2" name="inputBox2" />
<script type="text/javascript">
var timer = new Array();
function checkFields(el){
    var inputBox = document.getElementById(el);
    inputBox.value = inputBox.value.replace(/[^0-9]/g, '');
    clearTimeout(timer[el]);
    timer[el] = setTimeout((function(){ checkFields(el); }), 50);
};
function timerFields(el){
    timer[el] = setTimeout((function(){ checkFields(el); }), 50);
};
timerFields('inputBox');
timerFields('inputBox2');
</script>​
于 2012-08-21T07:58:40.027 回答
3

试试这个

var regexp=/\D/g;
alert(("$1 234 567").replace(regexp,""));
于 2012-08-21T08:03:43.560 回答
1
var f = function (s) { 
  var r = ''; 

  for (var i in s) {
    if ('0' <= s[i] && s[i] <= '9') {
      r += s[i]; 
    }
  }

  return r;
}

alert(f('123.234-234?345')); // 23234234345

但是使用另一个答案的正则表达式:)

于 2012-08-21T07:58:45.670 回答