如此经年,望尽千帆。
发布时间:2014-05-01 08:25:11
分享一例js代码,限制禁止输入中文,感觉还不错。收藏下。<html><head><meta http-equiv="Content-Type" content="text/html" /><title>限制只能输入中文</title></head><body>只能输入汉字:<INPUT onkeyup="value=value.replace(/[^\u4E00-\u9FA.........【阅读全文】
发布时间:2014-05-01 08:22:01
分享下js实现禁止中文输入的方法,个人感觉很不错。方法一,使用css样式。<input type="text" style="ime-mode:disabled">方法二:禁止粘贴,禁止拖拽,禁止中文输入。可以说是最强的禁止中文输入的方法。<input type="text" onpaste="return false" ondragenter="return false" oncontext.........【阅读全文】