js
华山派developer
这个作者很懒,什么都没留下…
展开
-
js-身份证识别性别和出生日期
***certNo:身份证号返回值:xxxx-xx-xx/男 function(certNo) { var _len = certNo.length;//获取身份证的长度 let brith="";//出生日期 xxxx-xx-xx let sex = "";//性别 //处理18位的身份证号码从号码中得到生日和性别代码 if (_len == 18){ brith=certNo.substr(6, 4) + "-" + certNo.substr(原创 2021-01-06 13:18:17 · 3181 阅读 · 0 评论 -
常用js方法库
import { showModal, navigateTo, paymeng, getCode, hideLoading, downloadFile, saveImageToPhotosAlbum, getLocation, showToast} from "./public.js";import { config} from "config.js";const app = getApp();//获取当前页面urlexport const getUrl原创 2020-07-10 11:29:57 · 898 阅读 · 0 评论 -
数组遍历的方法
1、map方法基本用法:Array.map(function(item,[index],[array]),[this.value])基本上用法和forEach一样。其中this.value是用作回调函数中“this”的值,如果省略或者为null、undefined,此时“this”为全局对象。注意点:map() 方法返回一个新数组,数组中的元素为原始数组元素调用函数处理后的值,处理顺序为...原创 2020-03-08 15:19:14 · 118 阅读 · 0 评论