欢迎访问服务器技术网-www.fuwuqijishu.com

限制文本框输入字符方法的漏洞问题

程序设计 fuwuqijishu 2年前 (2022-10-01) 39次浏览 0个评论 扫描二维码

关于大家对限制文本框输入字符方法基本上是在keypress事件中实现,这样实现起来很方便,它是检测键盘输入的事件,确实能实现限制文本框输入的字符类型,但是如果我们不是靠键盘在文本框中输入字符,而是用复制的方式将字符粘贴进去,这样就会失去对文本框字符的限制了!请问大家有没有更好的方法的问题

以下方法都可以实现限制文本框输入字符:
Private Sub Text1_KeyUp(KeyCode As Integer, Shift As Integer)
If IsNumeric(Text1) = False Then
MsgBox “输入错误”
End If
End Sub
或——
Private Sub Text1_Change()
If IsNumeric(Text1) = False Then
MsgBox “输入错误”
End If
End Sub
或——
Private Sub Text1_LostFocus()
If IsNumeric(Text1) = False Then
MsgBox “输入错误”
End If
End Sub
或——
Private Sub Text1_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
If IsNumeric(Text1) = False Then
MsgBox “输入错误”
End If
End Sub
‘中间的限制程序可按要求自已编写。

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2408.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900