-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
95 lines (48 loc) · 1.3 KB
/
Copy pathindex.html
File metadata and controls
95 lines (48 loc) · 1.3 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE HTML>
<html>
<head>
<title>Load from File</title>
<meta charset="UTF-8">
</head>
<body style="text-align:center;">
<section>
<div>
<h2>Get File Content</h2>
<input id="input-file" type="file">
<br>
<br>
<br>
<button type="button" style="color:blue; background-color:white;" onclick="Read();">
LOAD
</button>
<button type="button" style="color:brown;background-color:white;" onclick="Refresh();">
REFRESH
</button>
</div>
<br>
<br>
<div>
<h2>Get Object Key Value</h2>
<button type="button" onclick="ShowAll();"> SHOW ALL </button>
<button type="button" onclick="ShowPartly();"> SHOW PARTLY </button>
</div>
<br>
<br>
<div>
<h3>myInstance Keys</h3>
<p id="interface">File information</p>
</div>
</section>
<hr width="25%">
<section>
<br>
<br>
For more explanation please visit -
<a href="https://github.com/Incrementis/Javascript-getOwnPropertyNames-and-Object.keys-/wiki">
getOwnPropertyNames and Object.keys Wiki</a>
</section>
</body>
<footer>
<script language="javascript" type="text/javascript" src="object.js"></script>
</footer>
</html>