上一页 1 2 3 4 5 6 7 ··· 12 下一页
2017年1月26日
摘要: <div class="img-container"> <div class="img-left"></div> <div class="img-right"></div> </div><style> .img-container{ position: relative; width: 200px; 阅读全文
posted @ 2017-01-26 04:02 jayruan 阅读(102) 评论(0) 推荐(0) 编辑
2016年12月16日
摘要: <div onClick="test('yellow')"> CSS Variable</div> CSS :root{ --mainColor:red;} div{ background:black; color:var(--mainColor);} div{ text-align:center; 阅读全文
posted @ 2016-12-16 02:32 jayruan 阅读(1093) 评论(0) 推荐(0) 编辑
2016年12月14日
摘要: var elClock = document.getElementById("clock");var getTime = function(){ var _ = ['00','01','02','03','04','05','06','07','08','09'], d = new Date(), 阅读全文
posted @ 2016-12-14 10:11 jayruan 阅读(108) 评论(0) 推荐(0) 编辑
2016年11月21日
摘要: var COUNT = 0, demo = document.getElementById('demo'); function testFn() {demo.innerHTML += 'testFN 被调用了 ' + ++COUNT + '次<br>';} var throttle = functi 阅读全文
posted @ 2016-11-21 06:06 jayruan 阅读(259) 评论(0) 推荐(0) 编辑
2016年11月19日
摘要: https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js http://mynameismatthieu.com/WOW/dist/wow.min.js http://mynameismatthieu.com/ 阅读全文
posted @ 2016-11-19 01:36 jayruan 阅读(684) 评论(0) 推荐(0) 编辑
2016年11月15日
摘要: var i;for (i = categoryList.length - 1; i >= 0; i -= 1) { var categoryValue=categoryList[i]; if (categoryValue.doNotDisplayForEMenu==\"true\" ) { cate 阅读全文
posted @ 2016-11-15 10:38 jayruan 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 一,git config core.autocrlf false 二,vi .git/config[remote "origin"] url = https://github.com/iopqrst/learn20140823.git[remote "origin"]url = https://io 阅读全文
posted @ 2016-11-15 10:32 jayruan 阅读(629) 评论(0) 推荐(0) 编辑
摘要: db.items.aggregate([ { "$project": { "name": 1, "customfield": { "$cond": { "if": { "$eq": [ "$field1", "4" ] }, "then": 30, "else": { "$cond": { "if" 阅读全文
posted @ 2016-11-15 09:57 jayruan 阅读(193) 评论(0) 推荐(0) 编辑
摘要: function getURL(URL) { return new Promise(function (resolve, reject) { var req = new XMLHttpRequest(); req.open('GET', URL, true); req.onload = functi 阅读全文
posted @ 2016-11-15 04:53 jayruan 阅读(128) 评论(0) 推荐(0) 编辑
2016年11月14日
摘要: replace方法的语法是:stringObj.replace(rgExp, replaceText) 其中stringObj是字符串(string),reExp可以是正则表达式对象(RegExp)也可以是字符串(string),replaceText是替代查找到的字符串。。为了帮助大家更好的理解, 阅读全文
posted @ 2016-11-14 03:36 jayruan 阅读(205) 评论(0) 推荐(0) 编辑
2016年11月12日
摘要: $cmp,$eq,$gt,$gte,$lt,$lte,$ne$setEquals,$setIntersection,$setUnion,$setDifference,$setLsSubset,$anyElementTrue,$allElemetsTruex: { $cond: { if: { $gt 阅读全文
posted @ 2016-11-12 01:00 jayruan 阅读(209) 评论(0) 推荐(0) 编辑
2016年11月7日
摘要: !/bin/shBACK_DB=ALLOUT_DIR=/home/jianyeruan/app/mongo #临时备份目录TAR_DIR=/home/jianyeruan/app/mongotar #备份存放路径DATE=`date +%Y%m%d%H` #获取当前系统时间DB_USER=usern 阅读全文
posted @ 2016-11-07 02:27 jayruan 阅读(223) 评论(0) 推荐(0) 编辑
摘要: 张映 发表于 2013-12-03 分类目录: nosql 标签:mongodb, 备份, 导入, 导出, 还原 张映 发表于 2013-12-03 分类目录: nosql 标签:mongodb, 备份, 导入, 导出, 还原 mongodb数据备份和还原主要分为二种,一种是针对于库的mongodu 阅读全文
posted @ 2016-11-07 00:41 jayruan 阅读(200) 评论(0) 推荐(0) 编辑
2016年10月29日
摘要: var options={"upsert":false,"multi":false,'new':false}; 不存是否插入,更新是否批量,返回内容是更新前还是后. permissions.findOne(query, function (err, data) { if (err) return n 阅读全文
posted @ 2016-10-29 11:09 jayruan 阅读(339) 评论(0) 推荐(0) 编辑
2016年10月28日
摘要: openssl genrsa -des3 -out server.key 1024openssl req -new server.key -out servr.csr seserver-fnameserver-cityserver-compserver-unittest-vmtest@test-vm 阅读全文
posted @ 2016-10-28 11:55 jayruan 阅读(155) 评论(0) 推荐(0) 编辑
2016年10月25日
摘要: var isMobile = { Android: function() { return navigator.userAgent.match(/Android/i); }, BlackBerry: function() { return navigator.userAgent.match(/Bla 阅读全文
posted @ 2016-10-25 11:35 jayruan 阅读(341) 评论(0) 推荐(0) 编辑
2016年10月24日
摘要: <input class="flex-item" id="autocomplete" placeholder="address, zip or city" onFocus="geolocate()" type="text"></input> var autocomplete; function ge 阅读全文
posted @ 2016-10-24 23:24 jayruan 阅读(458) 评论(0) 推荐(0) 编辑
摘要: # yum install -y gcc-c++ make # curl -sL https://rpm.nodesource.com/setup_6.x | sudo -E bash - 阅读全文
posted @ 2016-10-24 04:00 jayruan 阅读(102) 评论(0) 推荐(0) 编辑
2016年10月20日
摘要: https://developers.google.com/maps/documentation/javascript/examples/places-autocomplete-addressform 阅读全文
posted @ 2016-10-20 12:17 jayruan 阅读(237) 评论(0) 推荐(0) 编辑
2016年10月18日
摘要: var test={ msg:{ "name":"name","value":"value" }}var str=JSON.stringify(test); //var testJson=JSON.parse(str); //console.log(testJson) var res = str.r 阅读全文
posted @ 2016-10-18 00:48 jayruan 阅读(154) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 12 下一页