摘要:
要重新安装C++ 运行库 为msvcp110.dll是VC++2012的文件 数字代表版本msvcp120是VC++2013的 110是2012的 100是2010的 90是2008的 71是2005的 Visual C++ Redistributable for Visual Studio 201 阅读全文
摘要:
要重新安装C++ 运行库 为msvcp110.dll是VC++2012的文件 数字代表版本msvcp120是VC++2013的 110是2012的 100是2010的 90是2008的 71是2005的 Visual C++ Redistributable for Visual Studio 201 阅读全文
摘要:
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 阅读全文
摘要:
this.testPromise=function(){ return new Promise(function(resolve,reject){ console.log("testPromise start:"); resolve(true); //这里会将true传到下一个then的参数s中 } 阅读全文
摘要:
System.Security.Cryptography.MD5CryptoServiceProvider md5 = new System.Security.Cryptography.MD5CryptoServiceProvider(); Random... 阅读全文
摘要:
方法一: FileStream textFile = File.Open(@"F:\程序\新手测试\linqApplication1\linqApplication1\IO.txt", FileMode.Append); StreamWriter sw =... 阅读全文
摘要:
select * from ( select *,row_number() over ( order by time desc ) n from history ) hhh where hhh.n > 50000 and hhh.n <... 阅读全文
摘要:
语法:position : static | absolute | fixed | relative取值:static :默认值。无特殊定位,对象遵循HTML定位规则absolute :将对象从文档流中拖出,使用 left , right , top , bottom 等属性相对于其最接近的一个最有... 阅读全文
摘要:
最近在用jquery 2.0 才知道已不支持IE6/7/8但又不想换回jquery1.X;找了一资料发现条件注释可以解决这个问题这个也像程序中的条件判断,先来介绍几个单词lt :Less than的简写,小于的意思。lte :Less than or equal to的简写,小于或等于的意思。gt ... 阅读全文
摘要:
jQuery BxSlider滑动滚动效果jQueryEasing动画效果扩展 阅读全文
摘要:
当用$.ajax()向后台提交参数时,如果参数中数组的话一般在后台会用List接收;但老是不成功如下面代码var arr1=[{ "aa": "1", "bb": "2" }, { "aa": "3", "bb": "4"}];var arr2=[{ "aa": "1", "bb": "2" }, ... 阅读全文
|