群友写的 顺手牵羊 保存了
?
只能输入中文:<input type='text'? name='test' onKeyUp=chkUper(this) onafterpaste=chkUper(this) />
<script language="javascript">
??? function chkUper(obj){
??????? if(/[^\u4E00-\u9FA5]/g.test(obj.value)){
??????????? obj.value = obj.value.replace(/[^\u4E00-\u9FA5]/g,'');
??????? }
??? }
</script>