-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (37 loc) · 833 Bytes
/
index.html
File metadata and controls
41 lines (37 loc) · 833 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>获取京东cookie</title>
<style>
body {
display: flex;
width: 800px;
height: 800px;
}
.jd-iframe {
width: 600px;
height: 800px;
border: 0;
overflow-y: auto;
}
.cookie-result {
flex: 1;
margin-top: 20px;
padding: 5px;
}
#cookieInput{
height: 100px;
}
</style>
</head>
<body>
<iframe class="jd-iframe" src="http://plogin.m.jd.com/login/login"></iframe>
<div class="cookie-result">
<div>左侧登陆后,cookie自动提取到下方文本框</div>
<div>
<textarea readonly="true" id="cookieInput"></textarea>
</div>
</div>
</body>
</html>