forked from 2lovecode/code-segment
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (68 loc) · 1.87 KB
/
Copy pathindex.html
File metadata and controls
70 lines (68 loc) · 1.87 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>反序列化</title>
<style>
* {
margin : 0;
padding : 0;
}
#my_header {
text-align : center;
margin-top : 30px;
margin-bottom : 30px;
}
#my_section {
width : 80%;
margin : 0 auto;
text-align: center;
}
#my_section p {
margin-bottom : 10px;
}
</style>
<script type="text/javascript" src="../Assets/phpSerializer.js"></script>
<script type="text/javascript" src="../Assets/utf.js"></script>
</head>
<body>
<header id="my_header">
<h2>
序列化
<sup style="font-size:10px">
<a href="../index.html">
首页
</a>
</sup>
</h2>
</header>
<section id="my_section">
<p>
<textarea placeholder="输入值" id="input_value" cols="100" rows="20" style="resize:none;"></textarea>
</p>
<p>
<button id="my_button">序列化</button>
</p>
<p>
<textarea placeholder="结果" id="output_value" cols="100" rows="20" style="resize:none;"></textarea>
</p>
</section>
</body>
</html>
<script type="text/javascript">
window.onload = function () {
var buttonEle = document.getElementById("my_button");
var inputEle = document.getElementById("input_value");
var outputEle = document.getElementById("output_value");
var inputValue = "";
var outputValue = "";
buttonEle.onclick = function () {
inputValue = inputEle.value;
outputValue = serialize(inputValue);
outputEle.value = outputValue;
}
}
</script>