CSS Nintex 禁用空格键在文本输入中没有空格

CSS Nintex disable spacebar no spaces in text input

在 Nintex 中,我试图限制用户使用 CSS 输入的错误数据。数据需要全部大写,没有空格。全部大写部分很容易通过

.transformToAllCaps {text-transform: uppercase;}. 

但是,我不知道如何不允许空格。谁能帮我解决这个问题?这在 CSS 中甚至可能吗?或者我需要在 Nintex 中使用其他设置吗?

CSS 无法做到这一点,但您可以使用 JS 删除字符串中的空格:

str = str.replace(/\s/g, '');