JS
文章平均质量分 94
冰丫头
这个作者很懒,什么都没留下…
展开
-
24个 JavaScript 循环遍历方法
一、数组遍历方法 forEach() forEach 方法用于调用数组的每个元素,并将元素传递给回调函数。数组中的每个值都会调用回调函数。其语法如下: array.forEach(function(currentValue, index, arr), thisValue) 该方法的第一个参数为回调函数,是必传的,它有三个参数: currentValue:必需。当前元素 index:可选。当前元素的索引值。 arr:可选。当前元素所属的数组对象 let arr = [1,2,3,4,5] arr.fo.转载 2021-10-09 17:55:29 · 301 阅读 · 0 评论 -
js 刚刚、几分钟前、几天前、几月前、几年前
beautifyTime = time => { // time为时间戳 const delta = (new Date().getTime() - time) / 1000 if (delta / (60 * 60 * 24 * 365) > 1) return `${parseInt(delta / (60 * 60 * 24 * 365))...原创 2020-03-23 16:37:18 · 684 阅读 · 0 评论 -
js校验 (平常的总结)
// 手机号 function phonecheck(obj){ return /^((13[0-9])|(14[5,7,9])|(15[^4])|(18[0-9])|(17[0,1,3,5,6,7,8]))\d{8}/.test(obj) } //电子邮箱 function emailcheck(obj){ return /^\w+([-+.]\w+)*@\w+([-.]\w+...原创 2019-12-13 11:24:37 · 137 阅读 · 0 评论 -
常用js方法总结
String 方法 描述 charAt() 返回在指定位置的字符。 charCodeAt() 返回在指定的位置的字符的 Unicode 编码。 concat() 连接字符串。 indexOf() 检索字符串。 match() 找到一个或多个正则表达式的匹配。 replace() 替换与正则表达式匹配的子串。 search() ...转载 2019-06-21 11:40:49 · 99 阅读 · 0 评论