1

我有个问题。我有一个剃刀文本框:

 @Html.TextBox("imp",   amount, new { @class = "alignRight", size = 5 })

我希望,在输入中,用户只写十进制值。我能怎么做?我认为 jquery 可以帮助我......但是......那个文本框的 id 是什么?

4

1 回答 1

0

是的,您也可以通过 Jquery 和 Javascript 进行操作

function isNumeric(evt)
{
 var c = (evt.which) ? evt.which : event.keyCode
 if ((c >= '0'  && c <= '9') || c == '.' )
    return true;
 return false;
}

关于Id,您也可以通过课程来完成。在你的情况下,它将是

@class = "alignRight"

也来自 http://www.webdeveloper.com/forum/showthread.php?124756-Stop-pasting-of-invalid-text-into-decimal-only-textbox

function validateDecimal(textboxIn)
{
    var text = textboxIn.value

    for(var x = 0; x < 10; x++)
    {
        while(text.indexOf(x) != -1)
        {
            text = text.replace(x,"");
        }
    }

    if(text != "." && text != "")
    {
        textboxIn.value = "";
    }
}
于 2013-05-20T09:19:55.937 回答