 
- 積分
- 227
- 威望
- 227
- 金錢
- 183
- 最後登錄
- 2014-1-21
|
经过自己的努力爬文,找到了解决办法:
1.在 register.htm 模板中,找到- <input type="text" size="25" maxlength="15" name="username" id="username"
複製代碼 将这行及后面的内容改为(注意认真比对):- <input type="text" size="25" maxlength="15" name="username" id="username" value='' onpropertychange="with(this)if(/[^\u3447-\uFA29]/ig.test(value))value=value.replace(/[^\u3447-\uFA29]/ig,'')" onkeyup="value=value.replace(/[^\u4E00-\u9FA5]/g,'')" onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^\u4E00-\u9FA5]/g,''))"
- onBlur="checkusername()" tabindex="1" class="txt" /> *</label>
複製代碼 2.删除 全局-注册与访问-用户信息保留关键字 中的数字,英文限制行。 |
|