我有一个表格和描述,我喜欢停止使用“www、http、//、@、.com、co.uk...”之类的词。
我想停止这种形式的所有电子邮件和域,但允许所有类型的字符空格、逗号和带有标点符号的拉丁字符,如“ç、ã、á、à...”
我有这样的事情
<code>
$().ready(function() {
// validate the description form when it is submitted
$("#descriptionform").validate();
});
$(document).ready(function(){
$.validator.addMethod("regex", function(value, element) {
return this.optional(element) || /^[a-z0-9 \_,.]+$/i.test(value);
}, "Description field can not include e-mail and/or urls.");
$("#regForm").validate();
});
</code>
请问你能帮帮我吗?先感谢您