<!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" language="javascript">
window.onload=function()
   {       
var str=document.body.innerHTML;
document.write(str.replace(/张三/g, "zhangsan"));
   }
  window.onload=function()
   {       
var str=document.body.innerHTML;
document.write(str.replace(/李四/g, "lisi"));
   }</script>
</head><body>
张三放假了..李四上学了
</body>
</html>
这样运行的效果是 :        “ 张三放假了..lisi上学了 ”
我需要运行后的效果是 :    “zhangsan放假了..lisi上学了”
指点下怎么实现啊? 

解决方案 »

  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" language="javascript">
    window.onload=function()
      {   
    var str=document.body.innerHTML;
    document.write(str.replace(/张三/g, "zhangsan").replace(/李四/g, "lisi"));
      }</script>
    </head><body>
    张三放假了..李四上学了
    </body>
    </html>