上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 34 下一页
摘要: 参考: 四种Java线程池用法解析 阅读全文
posted @ 2019-01-27 11:21 lvlin241 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 参考:https://angular.io/guide/quickstart 中文:http://www.angularjs.net.cn/ 阅读全文
posted @ 2019-01-22 13:39 lvlin241 阅读(160) 评论(0) 推荐(0) 编辑
摘要: // 检索(字符串中判断是否包含某个字符) 字符串.search('检索的内容');// 返回-1,不包含; 返回非-1,包含 字符串.indexOf("待判断的内容"); // 截取 字符串.substr(起始位置,长度); 字符串.substring(起始位置,长度); 示例: var a = "as far as i known, xxx is handsome"; b = a.sub... 阅读全文
posted @ 2019-01-22 12:09 lvlin241 阅读(3770) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/wangtaocsdn/article/details/71500500 阅读全文
posted @ 2019-01-17 14:30 lvlin241 阅读(494) 评论(0) 推荐(0) 编辑
摘要: 一、环境说明 1、物理机信息(主要): 内存:8G 系统/主频:Win7(旗舰版)64位/3.70GHZ 2、虚拟机信息: VMware Workstation 14 Pro 下载地址: 链接:https://pan.baidu.com/s/1X4RtZdQxL6HWGH1pAYyBhg 提取码:2 阅读全文
posted @ 2018-12-20 17:25 lvlin241 阅读(1959) 评论(0) 推荐(0) 编辑
摘要: 参考: https://www.jdon.com/concurrent/netty.html Java NIO原理和使用 参考:https://www.jdon.com/concurrent/nio%E5%8E%9F%E7%90%86%E5%BA%94%E7%94%A8.htm 阅读全文
posted @ 2018-12-12 15:57 lvlin241 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 属性设置为display:inline或display:inline-block 阅读全文
posted @ 2018-11-26 20:19 lvlin241 阅读(11536) 评论(0) 推荐(0) 编辑
摘要: var a = 2.34567; var b = a.toFixed(3); // 输出结果:2.346 // 数字字符串转换为数字 var c = "123"; typeof c; // string var d = parseInt(c); typeof d; // number var e = parseInt(c); typeof e; // number 阅读全文
posted @ 2018-11-26 20:17 lvlin241 阅读(296) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/bjweimengshu/article/details/78786315 阅读全文
posted @ 2018-11-25 20:53 lvlin241 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 原因: IE和Firefox是不支持含有'-'字符的日期格式,如:"2018-11-23" 解决方法: 日期格式 'yyyy-mm-dd' 改成 'yyyy/mm/dd' 代码: var dataParam = "2018-11-23 15:45:18"; // 转换为时间戳 var timestamp = Date.parse(new Date(data... 阅读全文
posted @ 2018-11-23 15:48 lvlin241 阅读(417) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 34 下一页