var dir = new Directory('bb/cc/ff/ee'); dir.createSync(recursive: true); //dir.createSync(recursive: false); 'bb/cc/ff/ee'是文件 '/bb/cc/ff/ee'是上级文件目录 tr ...
分类:
其他好文 时间:
2018-10-20 22:08:02
阅读次数:
308
表格(table):类似于Excel格式 table:表格标签,所有的表格的对象都要放在该标签中。 tr:表示表格中的一行 td:表示一行中的一个单元格 th:表头标签,与td相似。内容样式上进行加粗,用于设置表头 caption:表格标题。通常用于描述表的作用 table标签的属性: border ...
分类:
编程语言 时间:
2018-10-19 21:59:56
阅读次数:
430
jsp: <form method="post" id="createTable"> <table width="98%" border="0" cellspacing="0" cellpadding="0" align="center"> <tr> <td height="10"></td> </ ...
分类:
Web程序 时间:
2018-10-19 18:19:13
阅读次数:
176
神技do{}while(false) do{}while(false)或者说do{}while(0),本人在linux源码中学得,起初看起来比较奇怪,但在处理连续流程中特别有用,例如ABC三个流程,A执行后判断条件如果为true再执行B,如果未false直接结束流程,B执行完后同样判断条件如果为tr ...
分类:
其他好文 时间:
2018-10-19 02:25:57
阅读次数:
187
// alert(oTab.getElementsByTagName("tbody")[0] // .getElementsByTagName('tr')[1] // .getElementsByTagName('td')[2].innerHTML); // 可以简写成下面样子: ... ...
分类:
其他好文 时间:
2018-10-19 00:16:35
阅读次数:
469
二级联动非ajax实现,改改就能用。 html部分代码 : <tr> <td colspan="2"> <select name="fatherTopicId" class="select" id="fatherTopicId" style=''> <option value="" selected ...
分类:
Web程序 时间:
2018-10-17 15:44:25
阅读次数:
233
"数据清理" 简书大神SeanCheney的译作,我作了些格式调整和文章目录结构的变化,更适合自己阅读,以后翻阅是更加方便自己查找吧 设定最大列数和最大行数 1 宽格式转长格式 .dataframe tbody tr th:only of type { vertical align: middle; ...
分类:
其他好文 时间:
2018-10-17 00:09:03
阅读次数:
159
$("#gridTable").find("tbody tr").not(".jqgfirstrow").each(function (i) { var inventoryQty = $(this).find('[aria-describedby="gridTable_InventoryQty"]' ...
分类:
其他好文 时间:
2018-10-16 10:58:08
阅读次数:
1940
获取本机IP /sbin/ifconfig -a|grep inet|grep -v 127.0.0.1|grep -v inet6|awk '{print $2}'|tr -d "addr:" 获取本机外网ip 如果是MAC,则用浏览器访问 百度 搜索 ip 如果是服务器,则登录上去后curl h ...
分类:
系统相关 时间:
2018-10-14 01:57:52
阅读次数:
173