码迷,mamicode.com
首页 > Web开发 > 详细

JS Replace

时间:2018-10-28 16:55:01      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:inner   txt   try   rip   body   replace   button   element   click   

<!DOCTYPE html>
<html>
<body>
 <button onclick="myFunction()">Try it</button>
 <p id="demo">Paul,Paula,paul,sPaul,Paul,Paul</p>
 <script>
  function myFunction() {
      var str = document.getElementById("demo").innerHTML;
      var txt = str.replace(/Paul/g,"Ringo");
      document.getElementById("demo").innerHTML = txt;
  }
 </script>
</body>
</html>

JS Replace

标签:inner   txt   try   rip   body   replace   button   element   click   

原文地址:https://www.cnblogs.com/azurite/p/9866011.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!