上一页 1 2 3 4 5 6 7 8 ··· 12 下一页
2016年10月17日
摘要: var str = "1a1b1c";var reg = new RegExp("1(.)", "g");alert(reg.test(str)); // truealert(reg.test(str)); // true/*alert(reg.test(str)); // truedalert(r 阅读全文
posted @ 2016-10-17 23:51 jayruan 阅读(134) 评论(0) 推荐(0) 编辑
摘要: var eventUtil = { // 添加句柄 addHandler: function(element, type, handler) { if(element.addEventListener) { element.addEventListener(type, handler, false) 阅读全文
posted @ 2016-10-17 21:49 jayruan 阅读(166) 评论(0) 推荐(0) 编辑
2016年10月15日
摘要: function init() { var pAry = document.getElementsByTagName("p"); for( var i=0; i<pAry.length; i++ ) { pAry[i].onclick = function() { alert(i); } } } 解 阅读全文
posted @ 2016-10-15 02:46 jayruan 阅读(110) 评论(0) 推荐(0) 编辑
2016年10月10日
摘要: /* $timeout.cancel(timer); */window.speechSynthesis.onvoiceschanged = function(e) { voices = speechSynthesis.getVoices();};window.speechSynthesis.onvo 阅读全文
posted @ 2016-10-10 21:57 jayruan 阅读(1038) 评论(0) 推荐(0) 编辑
摘要: function uaredirect(f){try{if(document.getElementById("bdmark")!=null){return}var b=false;if(arguments[1]){var e=window.location.host;var a=window.loc 阅读全文
posted @ 2016-10-10 10:39 jayruan 阅读(843) 评论(0) 推荐(0) 编辑
2016年10月9日
摘要: http://rubaxa.github.io/Sortable/Sortable.js http://rubaxa.github.io/Sortable/Sortable.min.jshttp://rubaxa.github.io/Sortable/ng-sortable.jshttp://rub 阅读全文
posted @ 2016-10-09 09:12 jayruan 阅读(743) 评论(0) 推荐(0) 编辑
2016年9月30日
摘要: 1,将NodeList 转化成 Arrayvar divs = Array.from(document.querySelectorAll('div'));2,将 arguments 转化成 Arrayfunction something() { var args = Array.from(argum 阅读全文
posted @ 2016-09-30 10:54 jayruan 阅读(99) 评论(0) 推荐(0) 编辑
2016年9月19日
摘要: 确保有loc:[longitude, latitude]属性给loc增加索引AttractionSchema.index({loc: '2d'});使用geoNeardb.places.find( { location: { $nearSphere: { $geometry: { type : "P 阅读全文
posted @ 2016-09-19 09:33 jayruan 阅读(220) 评论(0) 推荐(0) 编辑
摘要: function bubbleSort3(arr3) { var low = 0; var high= arr.length-1; //设置变量的初始值 var tmp,j; console.time('2.改进后冒泡排序耗时'); while (low < high) { for (j= low; 阅读全文
posted @ 2016-09-19 01:42 jayruan 阅读(156) 评论(0) 推荐(0) 编辑
2016年9月13日
摘要: db.inventory.aggregate( [{$unwind: "$sizes"},{$group:{"}} ] ) sudo iptables -L -nservice iptables statusservice iptables start $project: { items: { $f 阅读全文
posted @ 2016-09-13 11:09 jayruan 阅读(200) 评论(0) 推荐(0) 编辑
2016年8月30日
摘要: rewrite 的语法 语法: rewrite regex replacement flag 默认: none 作用域: server, location, if This directive changes URI in accordance with the regular expression 阅读全文
posted @ 2016-08-30 03:51 jayruan 阅读(207) 评论(0) 推荐(0) 编辑
2016年8月17日
摘要: #!/bin/sh#docker exec -i t nginx /usr/share/app/nginx/vip/webapp/evn.sh testtestUrl='http:\/\/192.168.1.100:3000'trueUrl='https:\/\/vip.menusifu.com:2 阅读全文
posted @ 2016-08-17 04:17 jayruan 阅读(482) 评论(0) 推荐(0) 编辑
2016年8月13日
摘要: MongoDB 高级查询条件操作符 2012-04-25 15:35:19| 分类: MongoDB | 标签:mongodb使用 mongodb查询 |举报|字号 订阅 http://blog.163.com/wm_at163/blog/static/13217349020123253346620 阅读全文
posted @ 2016-08-13 09:52 jayruan 阅读(695) 评论(0) 推荐(0) 编辑
2016年8月3日
摘要: $ sudo systemctl start docker $ sudo systemctl stop docker $ sudo systemctl restart docker If you want Docker to start at boot, you should also: $ sud 阅读全文
posted @ 2016-08-03 23:48 jayruan 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 1,Linux 内壳文件:cat /etc/issue OR /etc/redhat-release ubuntu[apt-get install -y vim] centos[yum install -y vim] [sudo yum install epel-release]update ins 阅读全文
posted @ 2016-08-03 23:34 jayruan 阅读(181) 评论(0) 推荐(0) 编辑
2016年7月26日
摘要: 异步for (var index = 0; index < data.length; index++) { var req = http.request(urlEntity, function(res) { var content = ""; res.on("data", function(data 阅读全文
posted @ 2016-07-26 05:57 jayruan 阅读(1676) 评论(0) 推荐(0) 编辑
2016年7月23日
摘要: ng-repeat高级用法:遍历数组: <li ng-repeat="item in array">{{item}}</li>遍历对象: key:对象的key value:对象的value <li ng-repeat="(key,value) in obj">{{key}} | {{value}}< 阅读全文
posted @ 2016-07-23 20:15 jayruan 阅读(38293) 评论(1) 推荐(0) 编辑
摘要: 最近一直在用mongodb,有时候会需要用到统计,在网上查了一些资料,最适合用的就是用aggregate,以下介绍一下自己运用的心得。。 别人写过的我就不过多描述了,大家一搜能搜索到N多一样的,我写一下我的总结。 基础知识 请大家自行查找更多,以下是关键文档。 操作符介绍: $project:包含、 阅读全文
posted @ 2016-07-23 05:39 jayruan 阅读(184) 评论(0) 推荐(0) 编辑
2016年7月7日
摘要: 阅读全文
posted @ 2016-07-07 00:33 jayruan 阅读(118) 评论(0) 推荐(0) 编辑
2016年7月5日
摘要: docker run -d --name data -v c:/jayruanwork/app:/usr/share/app busybox || windows c:\jayruanwork\app|configdocker run -d --name=nginx -p 90:90 -p 80:8 阅读全文
posted @ 2016-07-05 00:35 jayruan 阅读(166) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 12 下一页