-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (79 loc) · 2.21 KB
/
index.html
File metadata and controls
79 lines (79 loc) · 2.21 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Test</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="res/lib/jquery/1.8.3/jquery.js" ></script>
<script type="text/javascript" src="res/lib/json/1.0/json2.js" ></script>
<script type="text/javascript" src="res/common/tableData.js" ></script>
<script>
$(function(){
var html = $("#J_tabletpl_imei tr").tableData();
console.log( html );
})
</script>
</head>
<body>
<div>
<table name="tradeRecordsIndex" class="ui-record-table" width="100%">
<colgroup>
<col width="25%">
<col width="25%">
<col width="25%">
<col width="25%">
</colgroup>
<thead>
<tr>
<th style="text-align:center">IMEI串号</th>
<th style="">品牌</th>
<th style="">机型</th>
<th class="">颜色</th>
</thead>
<tbody id="J_tabletpl_imei">
<tr data-options='{"imei":11111111 , "brandName":"三星", "brandType" : "Glaxy S4" , "color" : "白色"}'>
<td style="text-align:center;">
<p class="">
11111111
</p>
</td>
<td><p class="time-d">三星</p></td>
<td><p class="time-d">Glaxy S4</p></td>
<td>
<p class="text-content">
白色
</p>
</td>
</tr>
<tr data-options='{"imei":11111112 , "brandName":"三星", "brandType" : "Glaxy S4" , "color" : "黑色"}'>
<td style="text-align:center;">
<p class="">
11111112
</p>
</td>
<td><p class="time-d">三星</p></td>
<td><p class="time-d">Glaxy S4</p></td>
<td>
<p class="text-content">
黑色
</p>
</td>
</tr>
<tr data-options='{"imei":11111113 , "brandName":"三星", "brandType" : "Glaxy S4" , "color" : "黑色"}'>
<td style="text-align:center;">
<p class="">
11111113
</p>
</td>
<td><p class="time-d">三星</p></td>
<td><p class="time-d">Glaxy S4</p></td>
<td>
<p class="text-content">
银色
</p>
</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>