Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这个脚本来接受输入框的某些字符,但我需要修改它。我只想接受字母、数字和一个空格。我怎么能这样做?
var r={ 'special':/[\W]/g, 'quotes':/['\''&'\"']/g, 'notnumbers':/[^\d]/g } function valid(o,w){ o.value = o.value.replace(r[w],''); }
问候
[\d*\w*\s{1}]
\d*
\w*
\s{1}
将它们放在一个字符类中[...]允许它们按任何顺序排列。
[...]
这是一个构建和测试正则表达式的好网站。