码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2016-11-29 22:25:10      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:post   round   ace   bst   string   color   str   substring   bsp   

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 判断字串字节数,并截取长度

标签:post   round   ace   bst   string   color   str   substring   bsp   

原文地址:http://www.cnblogs.com/Eton/p/6115345.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!