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

Indexof

时间:2018-11-01 11:41:38      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:cli   次数   nbsp   UNC   查看   function   tle   doc   出现   

用indexof查找一串字符中某个字符出现的次数:

<!DOCTYPE html>
<html>
 <head>
     <meta charset="utf-8">
        <title>Indexof</title>   
    </head>
    <body>
     <button onclick="myFunction()">点我可查看这一串"one,two,three,one,one,two,three"字符中"one"字符出现的次数</button>   
        <p id="demo"></p>
        <script type="text/javascript">
         function myFunction(){
             var str = "one,two,three,one,one,two,three";
                var count=0;
                var index=0;
                var key="one";
                while((index = str.indexOf(key,index))!= -1){
                 index += key.length;
                    count = count+1;
                }
                document.getElementById("demo").innerHTML = count;
            }
        </script>   
    </body>
</html>

Indexof

标签:cli   次数   nbsp   UNC   查看   function   tle   doc   出现   

原文地址:https://www.cnblogs.com/X1604389100/p/9887095.html

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