11.為String類擴展trim方法
阿新 • • 發佈:2017-11-21
自己 username fss 無法 use http 擴展 oos pan
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 2 "http://www.w3.org/TR/html4/loose.dtd"> 3 <html> 4 <head> 5 <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> 6 <title>無標題文檔</title> 7 <script type="text/javascript"> 8 9 varusername=" sf fss "; 10 //alert("-->"+username.trim()+"<--");//js中的trim方法可以用來去除字符串的前後空格;但是在ie瀏覽器中無法使用 11 12 //使用自己擴展的trim方法 13 String.prototype.trim=function(){ 14 15 //return this.replace("前空格","").replace("後空格","");//this代表調用該函數的字符串 16 /* 17 前空白的正則表達式對象:/^\s+/18 後空白的正則表達式對象:/\s+$/ 19 20 */ 21 return this.replace(/^\s+/,"").replace(/\s+$/,""); 22 23 } 24 25 alert("-->"+username.trim()+"<--"); 26 27 </script> 28 </head> 29 30 <body> 31 </body> 32 </html>
11.為String類擴展trim方法