限制只能中文输入的方法

2016-01-29 17:31 8 1 收藏

限制只能中文输入的方法,限制只能中文输入的方法

【 tulaoshi.com - ASP 】

  实现函数:
function isCharsInBag (s, bag)
{
var i,c;
for (i = 0; i < s.length; i++)
{
c = s.charAt(i);//字符串s中的字符
if (bag.indexOf(c) -1)
return c;
}
return "";
}
检查函数:
function ischinese(s)
{
var errorChar;
var badChar = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789<,[]{}?/+=|'":;~!#$%()`";
errorChar = isCharsInBag( s, badChar)
if (errorChar != "" )
{
report=report+"请重新输入中文n";
return false;
}

return true;
}
就这么简单:)其实还输入日语,晕

 

来源:http://www.tulaoshi.com/n/20160129/1501733.html

延伸阅读
bluestacks怎么输入中文?   bluestacks里面有集成中文输入法的,具体使用方式为:点击输入框,选择谷歌输入法,然后再次输入就可以了。
标签: Web开发
-------------------------------  onkeypress="if (event.keyCode 45 || event.keyCode 57) event.returnValue = false;" ------------------------------- 在文本框的 onkeypress事件中加入以上代码,屏蔽键盘事件中,输入值不是数字则返回为false
我们在使用WORD的时可能会经常碰到WORD中无法输入中文的情况。因为,虽然我们安装了搜狗输入法,但是到我们在WORD中使用搜狗的输入法的切换中英文的按键的时候会发现根本没有效果,无法将输入法切换成中文的。下面我就介绍一下如何在WORD中把搜狗输入法切换到中文。 在word2010或2003中搜狗输入法无法切换中文怎么解决? 我装的是office2010...
正在看的ORACLE教程是:怎么才能限制SQL Server只能让指定的机器连接。 Q. How can I restrict access to my SQL Server so that it only allows certain machines to connect? (v1.0 19.10.1998) 怎样才能限制我的SQL Server只能让指定的机器连接 A. SQL Server has no built-in tools/facilities to do this. It also does not have the ...

经验教程

279

收藏

47
微博分享 QQ分享 QQ空间 手机页面 收藏网站 回到头部