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

用indexof统计字符出现的次数

时间:2018-12-31 15:53:36      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:ice   dex   ==   indexof   css   doctype   src   sheet   ++   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <link rel="stylesheet" href="./index.css">
    <title>js学习</title>
</head>
<body>
    <p id="p1">start,stop,speed,start,speed ,velocicty,start</p>
    <button onclick="fun()">Try it</button>
    <p id="demo"></p>
    <script src="./index.js"></script>
</body>
</html>
 
function fun(){
    var str = document.getElementById("p1").innerHTML;
    var num=0;
    var a=str.indexOf("start");
    while(a!==-1){
        a=str.indexOf("start",a+1);
        num++;
    }
    document.getElementById("demo").innerHTML = num;
}

用indexof统计字符出现的次数

标签:ice   dex   ==   indexof   css   doctype   src   sheet   ++   

原文地址:https://www.cnblogs.com/dal3546/p/10202001.html

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