js
simpleQQP
这个作者很懒,什么都没留下…
展开
-
js实现登录验证码
js实现登录验证码 <!Doctype html> <head> <title>js验证码</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="viewport" content="width=de...原创 2020-01-07 11:40:07 · 1896 阅读 · 0 评论 -
vue 项目中 获取本周、本月、本机、本年的第一天
项目中有 时间控件默认设置 起始时间为 本月第一天、截止时间是 当前日期的后一天 的需求,所以记录了一下 时间格式化: //日期格式化,返回值形式为yy-mm-dd timeFormat: function (date) { if (!date || typeof(date) === "string") { this.error("参数异...原创 2019-12-04 09:38:25 · 4614 阅读 · 0 评论 -
select 设置选中 以及 获取选中的value和text
根据 value 选中 $("#village_id_build").find("option[value='999']").prop("selected", true); 根据 text 选中 $("#village_id_build option:contains(北京)").attr("selected", true);原创 2019-11-04 09:43:46 · 300 阅读 · 0 评论 -
js如何截取中文字符串
var str = <span style="color:yellow">离线</span> var arr = new Array(); var i = 0; while (i<str.length) { var s=""; while (str.charCodeAt(i) ...原创 2019-08-30 14:46:07 · 1560 阅读 · 0 评论