无序列表: <ul> <li></li> <li></li> </ul> 有序列表: <ol> <li></li> <li></li> </ol> 自定义列表: <dl> <dt></dt> <dd></dd> </dl> 表格: <table> <tr> <td></td> </tr> </tab ...
分类:
Web程序 时间:
2020-06-13 10:46:21
阅读次数:
97
这帖子本来是教练为了给低年级学生分享经验而让我写的学习经历,不过等我退役之后可能就变成回忆录了。 初三 WC 前:上了正睿的线上课程,练了一些模拟赛,同时也正在学文化课。 然后,莫名奇妙1膜考了全校前二 + thuwc拿了省队一本。开启了我之前从未想过的船新的停课生活。 WC 后:去杭二参加集训。 ...
分类:
其他好文 时间:
2020-06-12 22:58:55
阅读次数:
121
如何做到 ueditor批量上传word图片? 1、前端引用代码 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.d ...
分类:
Web程序 时间:
2020-06-12 13:01:40
阅读次数:
110
普通文本框 asp:TextBox 前面的 <tr> <td width="20%" align="right" bgcolor="#F5F5F5">备注:</td> <td align="left" bgcolor="#FFFFFF" colspan="3"> <asp:TextBox onmou ...
分类:
Web程序 时间:
2020-06-11 22:02:24
阅读次数:
107
1. 21 % -5; // machine-dependent: result is 1 or -4 21 / -5; // machine-dependent: result -4 or -5 2. 溢出 3. bool 类型可转换为任何算术类型——bool 值false 用 0 表示,而 tr ...
分类:
其他好文 时间:
2020-06-11 00:42:03
阅读次数:
45
1、html部分 <table> <thead> <tr> <th>序号</th> <th>姓名</th> <th>年龄</th> <th>性别</th> </tr> </thead> <tbody> <tr> <td>1</td> <td>张三</td> <td>18</td> <td>男</td ...
分类:
其他好文 时间:
2020-06-10 14:45:24
阅读次数:
72
原本这只是一个用html编写的干瘪难看的表格: <body> <h1>创建一个3*3的表格</h1> <table> <tr> <!--th和td都是单元格,th里的内容会默认加粗并且居中 --> <th>表头1</th> <th>表头2</th> <th>表头3</th> <th>表头4</th> ...
分类:
Web程序 时间:
2020-06-10 00:00:33
阅读次数:
114
What happened? MGM movie and song producer. Similar peer to peer program as Napster, illegal distribution of copyrighted movies and songs. Grokster tr ...
分类:
其他好文 时间:
2020-06-09 23:22:41
阅读次数:
104
使用线程池的目的是希望线程控制在某个范围内,以免造成服务崩溃,所以在使用线程池的时候要多加注意。记录原因:一个webservice中转项目,需求很简单,提供webservice接口接收数据,然后入库,再通过webservice将数据原样推送给其他应用,推送数据给应用时使用的是线程池,保证一定的并发量 ...
分类:
编程语言 时间:
2020-06-09 14:31:55
阅读次数:
76
1、表格的基本语法 <table> <tr> <td></td> </tr> </table> <table> </table>:用于定义表格的标签。 <tr> </tr>标签用于定义表格中的行,必须镶嵌在<table> </table>标签中。 <td></td>:用于定义表格中的单元格,必须嵌套 ...
分类:
其他好文 时间:
2020-06-08 18:49:36
阅读次数:
68