0

我是 JavaScript 新手,您能否建议我如何在按键事件中验证浮点值。我试过一个例子,它需要两个'。

4

1 回答 1

1

这是给你的代码,这个函数可以用于整数和小数

<input id="MyTextBox1" onkeypress=' IntegerAndDecimal(event,this,true)' >


function IntegerAndDecimal(e,obj,isDecimal)
{
    if ([e.keyCode||e.which]==8) //this is to allow backspace
    return true;

    if ([e.keyCode||e.which]==46) //this is to allow decimal point
    {
      if(isDecimal=='true')
      {
        var val = obj.value;
        if(val.indexOf(".") > -1)
        {
            e.returnValue = false;
            return false;
        }
        return true;
      }
      else
      {
        e.returnValue = false;
        return false;
      }
    }

    if ([e.keyCode||e.which] < 48 || [e.keyCode||e.which] > 57)
    e.preventDefault? e.preventDefault() : e.returnValue = false; 
}
于 2013-01-17T18:43:48.377 回答