gpt4 book ai didi

javascript - 仅适用于数值的 javascript 函数,默认值 "0"

转载 作者:行者123 更新时间:2023-12-03 12:30:33 25 4
gpt4 key购买 nike

下面是我在 MVC 应用程序 View 中的文本框。我希望当它加载时它具有默认值“0”并且只允许数字。那么它如何可能只使用一个常用功能。当用户将其保留为空白时,它会自动获取默认值。

@Html.TextBoxFor(model => item.myfeild, new { placeholder = "Required", @class = "myclass", require = "true", maxlength = "1", id = @item.myid })

最佳答案

Use This Function write event in textbox

onkeypress="return isNumberKey(event);"

function isNumberKey(evt) {
var charCode = (evt.which) ? evt.which : event.keyCode
if (charCode > 31 && (charCode < 48 || charCode > 57))
return false;
return true;

}

关于javascript - 仅适用于数值的 javascript 函数,默认值 "0",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23951143/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com