-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgetimg.html
executable file
·45 lines (44 loc) · 1.87 KB
/
getimg.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
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>从www.henha.com获取图片资源</title>
<link type="text/css" href="static/css/bootstrap.min.css" rel="stylesheet">
<script type="application/javascript" src="static/js/jquery-3.0.0.min.js"></script>
<script type="application/javascript" src="static/js/jquery.cookie.js"></script>
<script src="http://libs.baidu.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>
</head>
<body>
<header style="height: 100px;"></header>
<div class="container">
<div class="row">
<form class="form-horizontal" action="#" method="post">
<div class="form-group">
<label for="start-number" class="col-sm-2 control-label">起始页</label>
<div class="col-sm-10">
<input type="number" class="form-control" id="start-number" name="start-number" placeholder="从零开始" required min="0" step="1" value="">
</div>
</div>
<div class="form-group">
<label for="all-number" class="col-sm-2 control-label">下载数量</label>
<div class="col-sm-10">
<input type="number" class="form-control" id="all-number" name="all-number" placeholder="上限500" aria-valuemax="500" required max="500" step="1">
</div>
</div>
<div class="form-group">
<div class="col-sm-12 text-right">
<button type="submit" class="btn btn-primary btn-lg">确定</button>
</div>
</div>
</form>
</div>
</div>
</body>
<script>
function init(){
var start_num = parseInt($.cookie('end_num'))+1;
$('#start-number').val(start_num);
}
window.onload=init();
</script>
</html>