找出字符串中出现最多的字符以及出现的次数
function findMostString(str) {
let obj = {};
let max = 0;
for (let i of str) {
if (obj[i]) {
obj[i]++;
} else {
obj[i] = 1;
}
if (obj[i] > max) {
max = obj[i];
}
}
for (let item in obj) {
if (obj[item] == max) {
console.log(item, max)
}
}
}
var str = "successsss";
findMostString(str); //s,6
2,移动端事件的touch事件
触摸事件,有touchstart touchmove touchend touchcancel 四种之分
touchstart:手指触摸到屏幕的手会被触发
touchmove:手指在屏幕上移动的时候会被触发
touchend:手指离开屏幕的手触发
touchcancel:可由系统进行的触发。比如手指触摸屏幕的时候,突然alert了一下,或者系统中其他打断了touch的行为,则可以触发该事件
3,通过宽度和v-for 循环实现 语音的样式(类似于WiFi样式)
<view v-for="item in 5" :key="item" :style="{height:'20rpx',width: 50 + item*20 + 'rpx'}">