总结了下html表单: === 效果如下 === dada <! 组合表单中的相关数据 <! 为fieldset元素定义标题 hello <! 文本输入 firstname: <! 单选按钮输入 male female <! 复选框 i have a bike. i have a car <! 按钮 ...
分类:
Web程序 时间:
2018-07-02 20:17:29
阅读次数:
192
我们平时使用的github等仓库拉取代码时,有可能需要ssh认证,因此需要生成本地的 ssh key。 那么应该如何生成 ssh key 呢?? 1、首先要安装Git工具(上一篇:Git安装步骤) 2、右键鼠标,选中 “Git Bash here”; 或者在windows的 “开始” >“所以程序” ...
#encoding=utf-8 import os for root, dirs, files in os.walk("e:\\test2",topdown=False) : print u"当前目录:",root #打印目录绝对路径 for name in files : print u'文件名: ...
分类:
其他好文 时间:
2018-07-02 20:17:16
阅读次数:
137
import requestsimport reheaders = { 'User-Agent':'Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0)'}info_lists = []def judg ...
分类:
编程语言 时间:
2018-07-02 20:17:08
阅读次数:
205
1 #include "stdio.h" 2 #include "iostream" 3 #include "stdlib.h" 4 #include "time.h" 5 6 const int size=1000; 7 typedef long RecType; 8 typedef struct... ...
分类:
其他好文 时间:
2018-07-02 20:16:58
阅读次数:
189
1 #include "stdio.h" 2 #include "malloc.h" 3 typedef int datatype; 4 typedef struct node //定义链式栈结构 5 { datatype data; 6 struct node *next; 7 }StackNod... ...
分类:
其他好文 时间:
2018-07-02 20:16:46
阅读次数:
197
ip netns 命令用来管理 network namespace。它可以创建命名的 network namespace,然后通过名字来引用 network namespace,所以使用起来很方便。 ip netns 命令格式如下:ip [ OPTIONS ] netns { COMMAND | h ...
分类:
Web程序 时间:
2018-07-02 20:16:38
阅读次数:
10968
base layout 中需要使用 继承的 blade 中需要使用 其会覆盖父模板中的内容。 如果需要基于原 layout section 附加内容 @yield 类似于 @section/show 的用法,但是其继承者不能使用 @parent。 ...
分类:
其他好文 时间:
2018-07-02 20:16:29
阅读次数:
629
数据库管理员可以授予用户对数据的操作权限 GRANK:授予权限 GRANK <权限>[,<权限>...] ON<对象类型><对象名>[,<对象类型><对象名>...] TO <用户>[,<用户>] [WITH GRANK OPTION]; 获得某种权限的用户可以把这种权限再授予其他用户 例如: GR ...
分类:
数据库 时间:
2018-07-02 20:16:21
阅读次数:
233
break即破坏掉这个循环,强制结束,while循环里只要遇到break就结束,这个时候就好比驴生病了,不再循环拉磨,直接结束; 1 i = 0 2 while i<=10: 3 i+=1 4 if i == 5: #当i的值等于5时,执行下面的break 5 break #while遇到break ...
分类:
编程语言 时间:
2018-07-02 20:16:13
阅读次数:
174
1 #include "stdio.h" 2 #define MaxVertexNum 20 //定义图的最大顶点数 3 #define MaxEdgeNum 50 //定义图的最大边数 4 #define MaxValue 1000 //定义MaxValue为全局整型常量,作为无穷大 5 type... ...
分类:
其他好文 时间:
2018-07-02 20:16:04
阅读次数:
148
body部分 <form action='https://www.baidu.com' method='post' > 用 户 名:<input type="text" name="username"> <span class='state1'>请输入用户名</span><br/><br/> 密 码 ...
分类:
其他好文 时间:
2018-07-02 20:15:53
阅读次数:
192
CREATE EXTENSION postgis; CREATE EXTENSION pgrouting; CREATE EXTENSION postgis_topology; CREATE EXTENSION fuzzystrmatch; CREATE EXTENSION postgis_tige ...
分类:
数据库 时间:
2018-07-02 20:15:43
阅读次数:
889
codeforces 17C Balance 题意 题解 代码 c++ include using namespace std; define fi first define se second define mp make_pair define pb push_back define rep(i ...
分类:
其他好文 时间:
2018-07-02 20:15:25
阅读次数:
179
二叉树 建立二叉树,先序、中序、后序、层次的遍历此二叉树,并求叶子结点个数、树的高度( 用递归或非递归的方法都可以)。 部分运行结果: ...
分类:
其他好文 时间:
2018-07-02 20:14:55
阅读次数:
185
又是一道优美的dp Description 给一棵m个结点的无根树,你可以选择一个度数大于1的结点作为根,然后给一些结点(根、内部结点和叶子均可)着以黑色或白色。你的着色方案应该保证根结点到每个叶子的简单路径上都至少包含一个有色结点(哪怕是这个叶子本身)。 对于每个叶结点u,定义c[u]为从根结点从 ...
分类:
其他好文 时间:
2018-07-02 20:14:48
阅读次数:
172
Insert title here 免费开通人人网账号 注册邮箱: 你还可以使用 账号 注册或者 手机号 注册 创建密码: 真实姓名: 性别: ... ...
分类:
编程语言 时间:
2018-07-02 20:14:42
阅读次数:
244