1.只能输入英文
<input type="text" onkeyup="value=value.replace(/[^a-zA-Z]/g,'')">
2.只能输入中文、英文、数字、@符号和.符号
<input type="text" onkeyup="value=value.replace(/[^a-za-z0-9u4e00-u9fa5@.]/g,'')">
3.只能输入字母和汉字
<input onkeyup="value=value.replace(/[d]/g,'') "onbeforepaste="clipboarddata.setdata('text',clipboarddata.getdata('text').replace(/[d]/g,''))" maxlength=10 name="numbers">
4.只能输入英文字母和数字,不能输入中文
<input onkeyup="value=value.replace(/[^\w\/]/ig,'')">
5.只能输入英文字母和数字,不能输入中文
<input onkeyup="value=value.replace(/[^\w\.\/]/ig,'')">
本文转自王磊的博客博客园博客,原文链接:http://www.cnblogs.com/vipstone/p/5094329.html,如需转载请自行联系原作者