首页 > 代码库 > 监听中文输入
监听中文输入
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script><input id="txt" type="text"/>输入<span id=‘info‘></span>字数,有效字符:<span id=‘info_txt‘></span><script type="text/javascript">$(function(){ var tmp_len = 0; var tmp_str = ‘‘; var input_reg = /[\u4e00-\u9fa5]/g; $("#txt").mousemove(function(){ var input_str = $(this).val().match(input_reg); //如果匹配到了中文 if(input_str!=null){ //将匹配到的数组转成字符串 input_str = input_str.join(‘‘); } var input_len = $(this).val().length; if (input_len != tmp_len && input_str != tmp_len){ //设置文本款文字 $(this).val(input_str); $("#info").text(input_len); $("#info_txt").text(input_str); } tmp_len = input_len; tmp_len = input_str; });});</script>
监听中文输入
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。