码迷,mamicode.com
首页 > 其他好文 > 详细

RegExp( replace()的示例 )

时间:2018-10-28 23:30:13      阅读:315      评论:0      收藏:0      [点我收藏+]

标签:on()   ntb   doctype   str   htm   set   exp   get   demo1   

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
</head>
<body>
    <button onclick="myFunction()">try it!</button>
    <p id="demo1">Paul,Paula,Pauline,paul,Paul</p>
    
    <script>
        function myFunction()
        {
            var str = document.getElementById("demo1").innerHTML;
            var txt = str.replace("Paul","Ringo");
            document.getElementById("demo1").innerHTML = txt;
        }
    </script>
</body>
</html>

RegExp( replace()的示例 )

标签:on()   ntb   doctype   str   htm   set   exp   get   demo1   

原文地址:https://www.cnblogs.com/superyucong/p/9867852.html

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