s1.replace(/被替换内容/g,"替换为的内容")

解决方案 »

  1.   

    楼主运行下 看看  借助正则表达式这个方法更好用 
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>无标题文档</title><script type="text/javascript">
     var s1="123+456+78+9=0";
     alert(s1.replace(/\+/,"我被替换了"));
     
     alert(s1.replace(/\+/g,"我被替换了"));
     
     alert(s1.replace(/\+|\=/g,"我被替换了"));
    </script>
    </head><body>
    </body>
    </html>