检查文本框中的最大字符数
我有文本框,我只想在其中签名最大数量的字符。然后我会听到如何在 C# 中轻松检查它
I have textboxes where i only want signed a max number of characters in. an then I'll hear how i could check it easily in c#
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
只需设置文本框的 MaxLength 属性即可。
Just set the
MaxLength
property of the textbox.您可以根据需要设置文本框的 MaxLength 属性。
例如:如果您想要 MaxLength as 10. 给出 MaxLength - 10
You can set the
MaxLength Property
of the textbox as you want.E.g: if you want MaxLength as 10. give MaxLength - 10
TextBox.MaxLength 也许?
TextBox.MaxLength maybe?
或者,您可以添加 jQuery 插件
Alternatively you could add a jQuery plugin