<script type="text/javascript">
function allowDecimal(txt) {
var theEvent = txt.htmlEvent || window.event;
var key = theEvent.keyCode || theEvent.which;
key = String.fromCharCode(key);
var regex = /^\d*[0-9](|.\d*[0-9]|)*$/;
if (!regex.test(key)) {
theEvent.returnValue = false;
if (theEvent.preventDefault)
theEvent.preventDefault();
}
}
<asp:TextBox ID="txt" runat="server" onkeypress="allowDecimal(this);"></asp:TextBox>
这是不允许.
输入的,所以有人可以帮我出什么问题