php中的str_replace函数很强大, 让人艳羡, 在js中, 我们也可以类似搞起, 这里主要涉及到正则, 如下:
- <html>
- <body>
-
- <script>
- var a = "this is amazing";
- a = a.replace(/is/g, "xx")
- alert(a);
- </script>
-
- </body>
- </html>
测试了一下, 靠谱, 那样去掉字符串中的所有空格? easy, 如下:
- <html>
- <body>
-
- <script>
- var a = "this is amazing";
- a = a.replace(/ /g, "")
- alert(a);
- </script>
-
- </body>
- </html>
测了一下, 靠谱。