码迷,mamicode.com
首页 > 其他好文 > 详细

字符串首尾去空格

时间:2014-12-25 09:47:51      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:

 1 <!DOCTYPE html>
 2 <html xmlns="http://www.w3.org/1999/xhtml">
 3 <head>
 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
 5     <title></title>
 6     <script src="Js/jquery-1.8.2.min.js"></script>
 7     <script type="text/javascript">
 8         function trim(str) {
 9             str = str.replace(/^(\s|\u00A0)+/, ‘‘);
10             for (var i = str.length - 1; i >= 0; i--) {
11                 if (/\S/.test(str.charAt(i))) {
12                     str = str.substring(0, i + 1);
13                     break;
14                 }
15             }
16             return str;
17         }
18         $(function () {
19             $("#bt").click(function () {
20                 var temp = $(#tes);
21                 var c = temp[0];
22                 alert(test + trim(temp.val()) + str)
23             })
24         })
25     </script>
26 </head>
27 <body>
28     输入:<input id="tes" type="text" /><br />
29     <input id="bt" type="button" value="检测" />
30 </body>
31 </html>

 

字符串首尾去空格

标签:

原文地址:http://www.cnblogs.com/wykLog/p/4183829.html

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