JS 判断字串字节数,并截取长度

Posted 代码恶童

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS 判断字串字节数,并截取长度相关的知识,希望对你有一定的参考价值。

JS 判断字串字节数,并截取长度

 
var matchWords;
        function notifyTextLength() {
            var inputNum = document.getElementById("txtTitle").value.replace(/[^\\x00-\\xff]/g, "**").length; //得到输入的字节数
            if (inputNum <= 200) {
                matchWords = document.getElementById("txtTitle").value.length;
                document.getElementById("inputedWord").innerhtml = inputNum + "字节," + matchWords + "字符";
                document.getElementById("inputtingWord").innerHTML = (200 - inputNum) + "字母,"+(Math.round(((200-inputNum)/2)-0.5))+"汉字";
            }
            if (inputNum > 200) {
                document.getElementById("txtTitle").value = document.getElementById("txtTitle").value.substring(0, matchWords);

 //如果超过200字节,就截取到200字节

             }
               
        }

 

<input id="txtTitle" type="text" class="inputText" runat="server" onpropertychange="notifyTextLength();" />

当前已经输入<span id="inputedWord" style="color:red"></span> 还可以输入<span id="inputtingWord" style="color:Red;"></span>

 

 

本文转载自:http://www.cnblogs.com/redvito/p/6114826.html

以上是关于JS 判断字串字节数,并截取长度的主要内容,如果未能解决你的问题,请参考以下文章

JAVA中:中英文混合的字符串按字节截取问题

java,要实现字符串按字节截取的方法

java,要实现字符串按字节截取的方法

java 按字节截取字符串问题

java按给定字节数截取含有中英文的字符串

【急求】java 按字节截取字符串,从指定的位置开始,到指定的位置结束