- 博客(7)
- 收藏
- 关注
转载 【will】sql动态拼接表名xxx_000
declare @tableName varchar declare @time varchar set @tableName='table' set @time='20130930' set @sql='select * from '+@tableName+'_'+@time exec @sql 转载于:https://www.cnblogs.com/EMTeam/p/33...
2013-09-30 10:01:00
2195
转载 【Will】浮动元素border显示不完整
position为fixed时,border显示不完整 解决方法:去掉height属性,或者height属性设为100% overflow:hidden 转载于:https://www.cnblogs.com/EMTeam/p/3255187.html...
2013-08-13 15:13:00
129
转载 【will】safari下不能响应click事件
safari下如果用document.getElementById("id").click()触发点击事件,是没有效果的 解决办法: var e = document.createEvent('MouseEvent'); e.initEvent('click', false, false); setTimeout(document.getElementById...
2013-07-11 09:53:00
282
转载 【will】JS去字符串首尾空格
当IE不支持Jquery的Trim()方法时, 就需要JS的方法: function mytrim(str){ return str.replace(/^\s+|\s+$/g,""); } 转载于:https://www.cnblogs.com/EMTeam/p/3181471.html
2013-07-10 10:28:00
141
转载 【will】string 和 base-64 string转换
stringtextToBase64(string sAscii){System.Text.ASCIIEncoding encoding =newSystem.Text.ASCIIEncoding();byte[]bytes = encoding.GetBytes(sAscii);returnSystem.Convert.ToBase64String(bytes, 0 ...
2013-06-27 10:38:00
111
转载 【will】大数据
“大数据”作为时下最火热的IT行业的词汇,随之数据仓库、数据安全、数据分析、数据挖掘等等围绕大数量的商业价值的利用逐渐成为行业人士争相追捧的利润焦点。笔者愚钝,大数据有多大,一直没有清晰的概念,故此简单的科普研究,分享至此: 最小的基本单位是Byte应该没多少人不知道吧,下面先按顺序给出所有单位:Byte、KB、MB、GB、TB、PB、EB、ZB、YB、DB、NB ...
2013-06-26 12:46:00
128
转载 【will】JQuery选择器
* $("*") 所有元素 #id $("#lastname") id="lastname" 的元素 .class $(".intro") 所有 class="intro" 的元素 element $("p") 所有 <p> 元素 .class.class $(".intro.demo") 所有 clas...
2013-06-20 23:42:00
144
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅