-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
37 lines (37 loc) · 1.43 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="main.css" />
</head>
<body>
<div class="wrap">
<h1>卡路里商品抓取工具 <a href="###" target="_blank" style="font-size:14px;">新窗口打开</a></h1>
<button id="btn">抓取商品数据</button>
<button id="removeall">清除所有数据</button>
<button id="checkout">导出数据</button>
<a href="###" target="_blank" class="filelink">prolist.xls</a>
<p id="message"></p>
<table>
<thead>
<tr>
<td>操作</td>
<td>分类</td>
<td>商品图片</td>
<td>商品名称</td>
<td>卖点</td>
<td>市场价</td>
<td>活动底价</td>
<td>库存</td>
<td>商品链接</td>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<script type="text/javascript" src="jquery-2.0.0.min.js"></script>
<script type="text/javascript" src="popup.js"></script>
</body>
</html>