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.
我正在使用 jQuery 验证引擎插件。这个正则表达式只允许字母数字,我想允许除反斜杠之外的任何其他字符。
/^[0-9a-zA-Z]+$/
试试这个(转义反斜杠将取决于您的语言):
/^[^\\]+$/
这是反斜杠的否定字符类。您在正则表达式文字中需要其中两个,否则它将尝试转义]
]