DeleteRecord implicitly moves the record pointer to the next record in the record set. If a call to NextRecord is made after a call to DeleteRecord th...
分类:
其他好文 时间:
2014-09-17 18:14:22
阅读次数:
187
有幸能参加大牛的培训,学到了很多东西,下面总结一下:1.总的思想是每一门语言都有好有坏,我们要通过好的代码规范和其他一些方式去避免使用糟糠的那一部分。JS有很多缺点,但是也有很多优点,我们就用他的优点就够了,不要去把他的缺点的部分加到你的代码里2.每一个Object 就是一个动态属性的集合。Obje...
分类:
编程语言 时间:
2014-09-17 18:13:42
阅读次数:
203
Given a linked list, remove thenthnode from the end of list and return its head.For example, Given linked list: 1->2->3->4->5, and n = 2. After re...
分类:
其他好文 时间:
2014-09-16 14:13:50
阅读次数:
133
要修改这个文件/etc/sysconfig/cron,要修改的内容如下:
## Type: string
## Default: ""
#
# At which time cron.daily should start. Default is 15 minutes after booting
# the system. Example setting would...
分类:
其他好文 时间:
2014-09-16 10:47:50
阅读次数:
351
Given a linked list, remove thenthnode from the end of list and return its head.For example, Given linked list: 1->2->3->4->5, and n = 2. After re...
分类:
其他好文 时间:
2014-09-16 10:24:40
阅读次数:
158
上文讲到了CSS3的选择器,通过after和before选择器,在元素前后添加内容。 也可以通过变量来实现自定义的标题1 h1:before{2 content:'第'counter(mycounter)'章';3 color:red;4...
分类:
其他好文 时间:
2014-09-15 19:24:19
阅读次数:
191
1//.clearfix:before,.clearfix:after{display:table;content:"",line-height:0;}.clearfix:after{clear:both;}2//overflow:hidden;zoom:1;3//添加div设置:clear:bot...
分类:
Web程序 时间:
2014-09-15 17:09:59
阅读次数:
254
最近一直做移动端,没和IE6打交道了,瞬间感觉世界变美好了。移动端虽然还是各种坑,但是比起修复IE6那还是轻松多了,移动端很多效果可以用CSS3来做,感觉一切都和谐的。:before :after也许大家认识它是从清楚浮动开始的。它在我眼里就是两个标签,而且非常实用好用,常用它你会发现,你可以省去很...
分类:
其他好文 时间:
2014-09-15 15:54:09
阅读次数:
241
p:before{content:"开始+";}//在p标签内容之前插入内容p:after{content:"←结束";}//在p标签内容结束之后添加p:first-child{ color:#FC6;}//符合条件的第一个子元素p:last-child{color:#3F3;}//最后一个子元.....
分类:
Web程序 时间:
2014-09-15 14:09:08
阅读次数:
222
Reloading a Razor WebGrid after Ajax calls using a partial view If you are using Razor and MVC you probably make some use of the built in controls in ...
分类:
Web程序 时间:
2014-09-14 22:06:37
阅读次数:
423