首页 > 代码库 > jQuery 工具类函数-字符串操作函数
jQuery 工具类函数-字符串操作函数
调用名为$.trim
的工具函数,能删除字符串中左右两边的空格符,但该函数不能删除字符串中间的空格,调用格式为:
$.trim (str);
参数str表示需要删除左右两边空格符的字符串。
<body> <div id="divtest"> <div class="title"> <span class="fl">字符串操作函数</span> <span class="fr"> <input id="btnShow" name="btnShow" type="button" value="http://www.mamicode.com/计算" /> </span> </div> <div class="content"> <input id="txtName" name="txtName" type="text" /> <div class="tip"></div> </div> </div> <script type="text/javascript"> $(function () { $("#btnShow").bind("click", function () { $(".tip").html(""); var strTmp = "内容:"; var strOld = $("#txtName").val(); var strNew =$.trim(strOld); strTmp += strOld; strTmp += "<br/><br>除掉空格符前的长度:" strTmp += strOld.length; strTmp += "<br/><br>除掉空格符后的长度:" strTmp += strNew.length; $(".tip").show().append(strTmp); }); }); </script></body>
内容: dfddf
除掉空格符前的长度:9
除掉空格符后的长度:5
jQuery 工具类函数-字符串操作函数
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。