首页 > Web开发 > 详细

Web作业:specific word count (index of )

时间:2018-11-03 23:47:13      阅读:180      评论:0      收藏:0      [点我收藏+]
统计文件中某一词语出现次数:
HTML:
    <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>

JS:
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; }

Web作业:specific word count (index of )

原文:https://www.cnblogs.com/Styleshah/p/9902609.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!