随笔分类 -  js

上一页 1 ··· 5 6 7 8 9 10 下一页
摘要:转自:http://www.cnblogs.com/chiname/articles/216517.html(侵删) /* * 方法:Array.removeAt(Index) * 功能:删除数组元素. * 参数:Index删除元素的下标. * 返回:在原数组上修改数组 */ /* * 方法:Arr 阅读全文
posted @ 2018-01-03 18:05 abcByme 阅读(1173) 评论(0) 推荐(0) 编辑
摘要:function formatDate(date,fmt) { if(/(y+)/.test(fmt)){ fmt = fmt.replace(RegExp.$1,(date.getFullYear()+'').substr(4-RegExp.$1.length)); } let o = { 'M+ 阅读全文
posted @ 2017-12-27 19:49 abcByme 阅读(11346) 评论(0) 推荐(0) 编辑
摘要:1、冒泡排序 2、快速排序 3、二路归并 字符串操作 1、判断回文字符串 2、翻转字符串 思路一:反向遍历字符串 思路二:转化成array操作 3、生成指定长度随机字符串 4、统计字符串中次数最多字母 数组操作 1、数组去重 2、数组中最大差值 其他常见算法 1、阶乘 非递归实现 递归实现 2、生成 阅读全文
posted @ 2017-12-26 10:44 abcByme 阅读(863) 评论(0) 推荐(2) 编辑
摘要:当前,数据可视化已经成为数据科学领域非常重要的一部分。不同网络系统中产生的数据,都需要经过适当的可视化处理,以便更好的呈现给用户读取和分析。 对任何一个组织来说,如果能够充分的获取数据、可视化数据和分析数据,那么就能很大程度上帮助了解数据产生的深层次原因,以便据此做出正确的决定。 对于前端开发人员来 阅读全文
posted @ 2017-12-25 09:34 abcByme 阅读(3372) 评论(1) 推荐(0) 编辑
摘要:冒泡排序 快速排序 去重 查找字符串中最多的值 阅读全文
posted @ 2017-12-20 16:38 abcByme 阅读(571) 评论(0) 推荐(0) 编辑
摘要:原文:https://github.com/Chalarangelo/30-seconds-of-code#anagrams-of-string-with-duplicates 作者:Chalarangelo 译者:IT168 www.toutiao.com/i6498962961288135182 阅读全文
posted @ 2017-12-19 15:24 abcByme 阅读(461) 评论(0) 推荐(0) 编辑
摘要:// 提取特殊字符串长度(scrstr 源字符串 armstr 特殊字符) getStrCount: function(scrstr, armstr) { var count = 0; while (scrstr.indexOf(armstr) >= 1) { scrstr = scrstr.replace(armstr, "") count++;... 阅读全文
posted @ 2017-12-05 19:30 abcByme 阅读(838) 评论(0) 推荐(0) 编辑
摘要://两数组去除重复数值 mergeArray: function(arr1, arr2) { for (var i = 0; i < arr1.length; i++) { for (var j = 0; j < arr2.length; j++) { if (arr1[i] === arr2[j]) { arr1.... 阅读全文
posted @ 2017-12-05 18:14 abcByme 阅读(4265) 评论(0) 推荐(0) 编辑
摘要:getobjs(obj,key,value) 阅读全文
posted @ 2017-12-01 10:43 abcByme 阅读(1647) 评论(2) 推荐(0) 编辑
摘要:formatDuring: function(mss) { var days = parseInt(mss / (1000 * 60 * 60 * 24)); var hours = parseInt((mss % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60)); var minutes = parseInt((mss % (1... 阅读全文
posted @ 2017-11-16 15:47 abcByme 阅读(1843) 评论(0) 推荐(0) 编辑
摘要:function getExplorer() { var explorer = window.navigator.userAgent; //ie if (explorer.indexOf("MSIE") >= 0) { return 'ie'; } ... 阅读全文
posted @ 2017-10-30 15:40 abcByme 阅读(1116) 评论(0) 推荐(0) 编辑
摘要:转自:CTOLib , www.ctolib.com/topics-107352.html ggraph - 图形可视化的凌乱数据 转自:CTOLib , www.ctolib.com/topics-107352.html ggraph - 图形可视化的凌乱数据 转自:CTOLib , www.ct 阅读全文
posted @ 2017-10-27 17:41 abcByme 阅读(4699) 评论(0) 推荐(1) 编辑
摘要:/* 获取当前环境: 系统环境: iOS Android PC 浏览器环境 微信内置浏览器、QQ内置浏览器、正常浏览器 是否app内打开 */ var ua = navigator.userAgent.toLowerCase(); //获取浏览器标识并转换为小写 var curConfig = { isiOS: !!navigator.userAgent.... 阅读全文
posted @ 2017-10-26 13:49 abcByme 阅读(4836) 评论(0) 推荐(3) 编辑
摘要:function hrefObj() { var localhref = window.location.href; var localarr = localhref.split('?')[1].split('&'); console.log(localarr) var tempObj = {}; 阅读全文
posted @ 2017-10-19 19:05 abcByme 阅读(6785) 评论(2) 推荐(0) 编辑
摘要:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.or 阅读全文
posted @ 2017-10-18 17:25 abcByme 阅读(680) 评论(0) 推荐(0) 编辑
摘要:var day1 = new Date("2017-9-17"); var day2 = new Date("2017-10-18"); console.log((day2 - day1) / (1000 * 60 * 60 * 24)); 阅读全文
posted @ 2017-10-18 17:04 abcByme 阅读(1226) 评论(0) 推荐(1) 编辑
摘要:function tab(date1,date2){ var oDate1 = new Date(date1); var oDate2 = new Date(date2); if(oDate1.getTime() > oDate2.getTime()){ console.log('第一个大'); } else { console.l... 阅读全文
posted @ 2017-10-18 16:20 abcByme 阅读(90303) 评论(2) 推荐(2) 编辑
摘要:getBeforeDate: function(day, str) { var now = new Date().getTime(); //获取毫秒数 var before = new Date(now - ((day > 0 && day ? day : 0) * 86400 * 1000)); var year = before.getFullYear(); var month = befo... 阅读全文
posted @ 2017-10-16 17:57 abcByme 阅读(847) 评论(0) 推荐(1) 编辑
摘要:Document t1 点击获取ip click me 阅读全文
posted @ 2017-10-10 16:39 abcByme 阅读(3764) 评论(0) 推荐(0) 编辑
摘要:Document 获取验证码 阅读全文
posted @ 2017-10-09 09:47 abcByme 阅读(875) 评论(0) 推荐(1) 编辑

上一页 1 ··· 5 6 7 8 9 10 下一页