-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathkeşfet2.html
More file actions
74 lines (72 loc) · 2.92 KB
/
keşfet2.html
File metadata and controls
74 lines (72 loc) · 2.92 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
<!DOCTYPE html>
<html>
<head>
<title>tablo</title>
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.min.js'></script>
</head>
<body bgcolor="#666"><center>
<style type="text/css">
a{color:blue;outline:none;text-decoration:none;}
.tg{border-collapse:collapse;border-spacing:0;}
.tg td{font-family:Arial, sans-serif;font-size:14px;padding:10px 5px;border-style:solid;border-width:2px;overflow:hidden;word-break:normal;border-color:black;}
.tg th{font-family:Arial, sans-serif;font-size:14px;font-weight:bold;padding:10px 5px;border-style:solid;border-width:2px;overflow:hidden;word-break:normal;border-color:black;}
.tg .tg-0lax{text-align:center;vertical-align:top}
input{font-size:88%;width:175px;outline:none;background-color:#252425;color:#bdbdbd;border:none;padding:4px;}
textarea{font-size:92%;outline:none;background-color:#333;border:2px solid black;padding:4px;color:#bdbdbd}
</style>
<table class="tg">
<tr>
<th class="tg-0lax">kişi</th>
<th class="tg-0lax">bildiklerim</th>
<th class="tg-0lax">az bildiklerim</th>
<th class="tg-0lax">tarih</th>
<th class="tg-0lax">link?</th>
</tr>
<tr>
<td class="tg-0lax"><input type="text" veri="1"></td>
<td class="tg-0lax"><input type="text" veri="2"></td>
<td class="tg-0lax"><input type="text" veri="3"></td>
<td class="tg-0lax"><input type="text" veri="4"></td>
<td class="tg-0lax"><input type="text" veri="5"><a id="5" href="">tık</a></td>
</tr>
<tr>
<td class="tg-0lax"><input type="text" veri="6"></td>
<td class="tg-0lax"><input type="text" veri="7"></td>
<td class="tg-0lax"><input type="text" veri="8"></td>
<td class="tg-0lax"><input type="text" veri="9"></td>
<td class="tg-0lax"><input type="text" veri="10"><a id="10" href="">tık</a></td>
</tr>
<tr>
<td class="tg-0lax"><input type="text" veri="11"></td>
<td class="tg-0lax"><input type="text" veri="12"></td>
<td class="tg-0lax"><input type="text" veri="13"></td>
<td class="tg-0lax"><input type="text" veri="14"></td>
<td class="tg-0lax"><input type="text" veri="15"><a id="15" href="">tık</a></td>
</tr>
<tr>
<td class="tg-0lax"><input type="text" veri="16"></td>
<td class="tg-0lax"><input type="text" veri="17"></td>
<td class="tg-0lax"><input type="text" veri="18"></td>
<td class="tg-0lax"><input type="text" veri="19"></td>
<td class="tg-0lax"><input type="text" veri="20"><a id="20" href="">tık</a></td>
</tr>
<tr>
<td class="tg-0lax"><input type="text" veri="21"></td>
<td class="tg-0lax"><input type="text" veri="22"></td>
<td class="tg-0lax"><input type="text" veri="23"></td>
<td class="tg-0lax"><input type="text" veri="24"></td>
<td class="tg-0lax"><input type="text" veri="25"><a id="25" href="">tık</a></td>
</tr>
</table>
<script>
$(document).ready(function () {
$("*[veri]").each(function () {
$("#"+$(this).attr("veri")).text(localStorage.getItem("item-" + $(this).attr("veri")));
});
$("*[veri]").on("keyup", function (itm) {
localStorage.setItem("item-" + $(this).attr("veri"), $(this).val());
})
})
</script>
</body>
</html>