//字符串 index
let str ='hello world'
console.log(str.toUpperCase() )
str.toUpperCase() //转大写,不影响原来的状态
str.toLowerCase() //转小写,不影响原来的状态
str.length() //字符串的长度,包括里面的空格
str[0] //字符串的长度,包括里面的空格
str[i]//遍历字符串的每一个字符
str.split(',')
//将字符串按指定字符分隔数组(字符串转数组),
指定字符是原字符串中存在的
str.split(' ').reverse().join(' ')
//先把字符串转成数组,第二部翻转,再拼会字符串
//利用数组来翻转字符串
console.log('-'.repeat(30)) //打印,了解
str.replace('world','china')
//将字符串某一部分内容替换成新的内容,如world 替换成china
//如果有重复,默认只会替换第一个
//str.replace(/world/g,'china')
//利用正则表达式进行全部替换
str.startsWith()//是否以某字符串开头
str.endsWith()//是否以某字符串结尾
str.includes()//是否包含某字符串
str.substr(4,5);//截取字符串方法1
//(stard,lenght) 开始下标,长度
str.substring(4,5);//截取字符串方法2
//(stard,end) 开始下标,结束下标
str.substring(0,8)+'...' //截取前8位,拼接省略号
//判断一个字符串在另一个字符串中的位置
str.indexOf('8') //第一次出现8的位置
str.lastIndexOf('8') //最后出现8的位置
str.indexOf('z') // 第一次出现z的位置,如果不存在,则返回-1
str.substring(str.indexOf('z')) //从8的下标位置,截取到最后
str.substring(0,str.indexOf('8'))+1
//从头开始截取到8的下标位置
now.getFullYear()
now.getMonth()
now.getDate()
now.getHours()
now.getMinutes()
now.getSeconds()
now.getDay()//一周的第几天
now.getTime()//当前时间的时间初,如,查看两个时间的时间差
练习
let template = '尊敬的{tel}用户,您获得{money}万的贷款额度,请尽快登陆领取'
let telList = ['188520112288', '188520112812', '188520281119']
for (let i = 0; i < telList.length; i++) {
let msg = template.replace('{tel}', telList[i])
msg = msg.replace('{money}', Math.round(Math.random() * 90) + 10)
console.log(msg)
}
效果
练习
let arr = ['易烊千玺', '千玺', '易烊榨菜', '海绵宝宝']
let keywords = prompt('请输入查询条件')
for (let i = 0; i < arr.length; i++) {
//判断a字符串中是否包含b字符串
if (arr[i].includes(keywords))
console.log(arr[i])
效果
年月日
let now=new Date()
//当前时间
console.log(now)
//打印当前时间
let ymd=[now.getFullYear(),now.getMonth(),now.getDate()].join('-')
let hms=[now.getHours(),now.getMinutes(),now.getSeconds()].join(':')
console.log(ymd) //年月日
console.log(hms) //时分秒
let all =[ymd,hms].join('-')
console.log(all)
console.log(now.getDate());
let str='星期'+'日一二三四五六'[now.getDay()]
效果
京东倒计时效果
/每隔一秒打印一次
setInterval(function(){},1000)
距离六点的倒计时
//倒计时
setInterval(function () {
let now = new Date()
let six = new Date('2020-08-31 18:00:00')
let sec = (six - now) / 1000
let h = Math.floor(sec / 3600)
let m = Math.floor(sec % 3600 / 60)
let s = Math.floor(sec % 3600 % 60)
h = h < 10 ? ('0' + h) : h
m = m < 10 ? ('0' + m) : m
s = s < 10 ? ('0' + s) : s
console.log([h, m, s].join(':'));
}, 1000)
//获得网页中的某个值
let str5 = 'http://www.baidu.com?a=10&b=20&c=30'
console.log(str5.startsWith('http://') || str5.startsWith('https://'));
let paramsStr = str5.split('?')[1]
//[1] 问号的右边,[问号的左边]
console.log(paramsStr);
let params = paramsStr.split('&')
console.log(params);
let key = 'b'
for (let i = 0; i < params.length; i++) {
console.log(params[i]);
let kv = params[i].split('=')
console.log(kv);
if (key === kv[0]) {
console.log(kv[1]);
break
} }