dd, label { margin-bottom: .5rem; }abbr[title] { text-decoration: none; }abbr[title] { border-bottom: 1px dotted; }abbr[title]:after { content: " (" a ...
分类:
Web程序 时间:
2016-11-03 18:32:38
阅读次数:
455
<input id = " " name = " " type = " file " accept=" ? ? ? ">Extension MIME Type .doc application/msword .dot application/msword .docx application/vnd. ...
分类:
Web程序 时间:
2016-11-02 10:04:36
阅读次数:
307
:before是css中的一种伪元素,可用于在某个元素之前插入某些内容。:after是css中的一种伪元素,可用于在某个元素之后插入某些内容。 举例: 1.结合border写个对话框的样式。 2.作为内容的半透明背景层。 ...
分类:
Web程序 时间:
2016-10-31 21:53:46
阅读次数:
186
django-crontab实现定时任务 1 django-crontab安装 django-crontab安装: django-crontab加入:只需要将INSTALLED_APPS即可。如下代码: INSTALLED_APPS = ( 'django_crontab', ... ) djang ...
分类:
其他好文 时间:
2016-10-31 21:37:50
阅读次数:
351
序 上一篇文章中介绍了基本的单向加密算法 — — MD5,也大致的说了说它实现的原理。这篇文章继续之前提到的单向加密,主要讲的是 SHA,同 MD5 一样,SHA 同样也是一个系列,它包括 SHA-1,SHA-224,SHA-256,SHA-384,和 SHA-512 等几种算法。其中,SHA-1, ...
分类:
编程语言 时间:
2016-10-31 06:54:09
阅读次数:
274
一:本次实验内容 1.编写程序,输入一个整数x,按照下式输出对应的y值。 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 #include<stdio.h> int main() { int ...
分类:
其他好文 时间:
2016-10-31 00:35:30
阅读次数:
174
shell编程中的条件判断条件if-thencase if-then单条件if commandthen commandsfi当command返回码为0时 条件成立 if.sh 全覆盖 if commandthen commandselse commandsfi if.sh 条件嵌套 if comma ...
分类:
系统相关 时间:
2016-10-30 01:10:51
阅读次数:
287
有n个正整数,找出其中和为t(t也是正整数)的可能的组合方式。如:
n=5,5个数分别为1,2,3,4,5,t=5;
那么可能的组合有5=1+4和5=2+3和5=5三种组合方式。 ...
分类:
其他好文 时间:
2016-10-27 12:23:35
阅读次数:
225