反正有没有通过正则表达式模式跳过特定字符?

时间:2019-05-28 11:40:58

标签: javascript html angularjs regex

我在HTML5中将输入字段设置为“文本”,并且我想拒绝这些字符; :|通过使用正则表达式模式。

最后我找到了正则表达式模式,但该输入字段中不接受另一种语言。有人可以帮助我解决此问题。

我累了这个

oninput="this.value = this.value.replace(/[^0-9'\@#$.A-Za-z!%^&*(){}_ -]+/g, '')">

<input type="text" name="name" class="form-control input-sm"  ng-model="department.name"
                                   ng-required="true" ng-change="resetError()" ng-maxlength="25"
                                   show-focus="deptFormStatus" oninput="this.value = this.value.replace(/[^0-9'\@#$.A-Za-z!%^&*(){}_ -]+/g, '')">

0 个答案:

没有答案