天使半只翼

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2017年2月7日

摘要: 要重新安装C++ 运行库 为msvcp110.dll是VC++2012的文件 数字代表版本msvcp120是VC++2013的 110是2012的 100是2010的 90是2008的 71是2005的 Visual C++ Redistributable for Visual Studio 201 阅读全文
posted @ 2017-02-07 17:26 天使半只翼 阅读(2619) 评论(0) 推荐(0) 编辑

2016年7月30日

摘要: typeof 它返回值是一个字符串,该字符串说明运算数的类型。 a=1; b=true; c="c"; d=function(){ console.log(" is d"); } e={ e1:"is e1"} f=null; g=[1,2,3]; console.log("a typeof="+t 阅读全文
posted @ 2016-07-30 15:18 天使半只翼 阅读(302) 评论(0) 推荐(0) 编辑

2016年7月18日

摘要: this.testPromise=function(){ return new Promise(function(resolve,reject){ console.log("testPromise start:"); resolve(true); //这里会将true传到下一个then的参数s中 } 阅读全文
posted @ 2016-07-18 17:38 天使半只翼 阅读(345) 评论(0) 推荐(0) 编辑

2015年7月21日

摘要: System.Security.Cryptography.MD5CryptoServiceProvider md5 = new System.Security.Cryptography.MD5CryptoServiceProvider(); Random... 阅读全文
posted @ 2015-07-21 09:48 天使半只翼 阅读(478) 评论(0) 推荐(0) 编辑

2015年7月20日

摘要: 方法一: FileStream textFile = File.Open(@"F:\程序\新手测试\linqApplication1\linqApplication1\IO.txt", FileMode.Append); StreamWriter sw =... 阅读全文
posted @ 2015-07-20 18:04 天使半只翼 阅读(321) 评论(0) 推荐(0) 编辑

2015年6月15日

摘要: select * from ( select *,row_number() over ( order by time desc ) n from history ) hhh where hhh.n > 50000 and hhh.n <... 阅读全文
posted @ 2015-06-15 18:10 天使半只翼 阅读(197) 评论(0) 推荐(1) 编辑

2015年5月6日

摘要: 语法:position : static | absolute | fixed | relative取值:static :默认值。无特殊定位,对象遵循HTML定位规则absolute :将对象从文档流中拖出,使用 left , right , top , bottom 等属性相对于其最接近的一个最有... 阅读全文
posted @ 2015-05-06 16:17 天使半只翼 阅读(312) 评论(0) 推荐(1) 编辑

摘要: 最近在用jquery 2.0 才知道已不支持IE6/7/8但又不想换回jquery1.X;找了一资料发现条件注释可以解决这个问题这个也像程序中的条件判断,先来介绍几个单词lt :Less than的简写,小于的意思。lte :Less than or equal to的简写,小于或等于的意思。gt ... 阅读全文
posted @ 2015-05-06 13:35 天使半只翼 阅读(650) 评论(0) 推荐(0) 编辑

2015年4月21日

摘要: jQuery BxSlider滑动滚动效果jQueryEasing动画效果扩展 阅读全文
posted @ 2015-04-21 15:16 天使半只翼 阅读(360) 评论(0) 推荐(0) 编辑

2015年4月9日

摘要: 当用$.ajax()向后台提交参数时,如果参数中数组的话一般在后台会用List接收;但老是不成功如下面代码var arr1=[{ "aa": "1", "bb": "2" }, { "aa": "3", "bb": "4"}];var arr2=[{ "aa": "1", "bb": "2" }, ... 阅读全文
posted @ 2015-04-09 15:55 天使半只翼 阅读(17652) 评论(2) 推荐(3) 编辑