<table>标签用于定义表格,每个表格由<table>标签开始,每个表格行由<tr>标签开始,每个表格数据由<td>标签开始 结果: 定义三行两列: 结果: 我的标题 ...
分类:
Web程序 时间:
2017-12-21 12:03:36
阅读次数:
233
1,html布局 <table> <tr> <td></td> </tr> </table> 2,css样式 table{ table-layout:fixed; //重要样式 } td{ width:500px;overflow:hidden;overflow:ellipsis; } 3,兼容 兼 ...
分类:
Web程序 时间:
2017-12-20 14:55:12
阅读次数:
170
<!DOCTYPE html><html> <head> <meta charset="utf-8"> <title>drag table</title> <style> table { /*border: 1px solid #333333;*/ } th { border-bottom: 1px ...
分类:
其他好文 时间:
2017-12-20 14:11:32
阅读次数:
174
<div class="table-responsive"> <table class="table text-nowrap"> <thead> <tr> <th> ... </th> .... </tr> </thead> <tbody> <tr> <td> ... </td> .... </tr ...
分类:
其他好文 时间:
2017-12-20 13:39:44
阅读次数:
97
/* $(document).on('click','.td_v',function () { window.location.href = gPages['single']+'&toneId='+$(this).attr('toneId'); })*/ /* $(document).live('c ...
分类:
其他好文 时间:
2017-12-20 13:36:57
阅读次数:
118
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, p, blockquote, th, td { margin:0; padding:0; } body { font-size... ...
分类:
Web程序 时间:
2017-12-19 01:25:59
阅读次数:
171
<table border ="边框" cellpadding=”” cellspacing=””> <thead>表头 <th></th> <th></th> </thead> <tbody> <tr>行 <td></td>列 <td></td> </tr> <tr> <td></td> <td> ...
分类:
其他好文 时间:
2017-12-17 13:23:29
阅读次数:
176
colspan和rowspan这两个属性用于创建特殊的表格。 colspan是“column span(跨列)”的缩写。colspan属性用在td标签中,用来指定单元格横向跨越的列数: 在浏览器中将显示如下: 单元格1 单元格2 单元格3 单元格4 该例通过把colspan设为“3”, 令所在单元格... ...
分类:
编程语言 时间:
2017-12-16 23:15:30
阅读次数:
347
如果我要获取第二个tr里的第二个td的值: children: find: 结果,通过children获取的值为:null,而通过find获取的值为:4 这是为什么呢? 通过children获取的是该元素的下级元素,而通过find获取的是该元素的下级所有元素。 这时回到上面,我们可以得出,$("#t ...
分类:
Web程序 时间:
2017-12-15 12:38:07
阅读次数:
159
智能卡是一种内嵌集成电路芯片并且芯片中带有微处理器、存储单元以及芯片操作系统的卡片的通称,又称CPU卡。它具有良好的数据存储、命令处理以及数据安全保护等功能,其中主要智能卡类别有:电信卡、金融 IC 卡、ID卡等。 当前智能卡制作采用的卡基材料主要有 ABS、PVC、PET、PETG 等,客户对卡体 ...
分类:
其他好文 时间:
2017-12-14 13:17:29
阅读次数:
259