-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathss.html
More file actions
62 lines (56 loc) · 1.31 KB
/
ss.html
File metadata and controls
62 lines (56 loc) · 1.31 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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<style>
#pic_url
{
position:absolute;
left:100px;
top:100px;
}
#price_picurl
{
position:absolute;
left:600px;
top:2px;
}
#jd_item
{
position:absolute;
left:100px;
top:500px;
}
#tt_item
{
position:absolute;
left:700px;
top:500px;
}
</style>
</head>
<body>
<div id="pic_url">
<img src='http://img10.360buyimg.com/n7/jfs/t3175/89/2690068639/114728/22c2edee/57e4a35bN230918c0.jpg',alt={{key_word}}>
<p><font size="5" face="arial">商品名:xxx</font></p>
</div>
<div id="price_picurl">
<p><img src="static/iphone6s.png",alt={{key_word}}></p>
</div>
<div id="jd_item">
<p><font size="4" face="arial">京东商品列表</font></p>
{%for i in list1%}
<p>
<a href="{{i.url}}">{{i.shop}}</a>,{{i.name}}:{{i.price}}
</p>
{%endfor%}
</div>
<div id="tt_item">
<p>淘宝商品列表</p>
{%for i in list2%}
<p>
<a href="{{i.url}}">{{i.shop}}</a>,{{i.name}}:{{i.price}}
</p>
{%endfor%}
</div>
</body>
</html>