替换字符串中的某些字符

  1. <html>
  2. <body>
  3.  
  4. <script type="text/vbscript">
  5. sometext="Welcome to this Web!!"
  6. document.write(Replace(sometext, "Web", "Page"))
  7. </script>
  8.  
  9. </body>
  10. </html>