使用html模式仅限制文本框中的空格

时间:2018-01-10 09:02:25

标签: javascript jquery html html5

我需要不允许用户使用html模式在文本框中多次输入空格字符或单次输入空格字符?如下所示

1){空格字符输入1次或更多次} ABCD - >允许

2)AB {空格字符输入1次或更多次} CD - >允许

3)ABCD1234 - >允许

4)1234 @#!!! @@ ABCD - >允许

5)ABCD {空格字符输入1次或更多次} - >允许

6){空格字符输入1次或更多次} - >不允许

只有第6个数字不允许进入用户所有其他都是允许使用html模式属性是否有任何表达式来解决我的上述问题?

1 个答案:

答案 0 :(得分:1)

此模式可能符合您的要求:func textView(_ textView: UITextView, shouldChangeTextIn range: NSRange, replacementText text: String) -> Bool { if text == "" { print("Text is null") } }