nomore
This commit is contained in:
parent
8ee49a97f2
commit
b19126e509
|
@ -5,9 +5,11 @@
|
||||||
{{.Body}}
|
{{.Body}}
|
||||||
</body>
|
</body>
|
||||||
<script>
|
<script>
|
||||||
var ilist = document.getElementsByTagName("input");
|
document.onload = function () {
|
||||||
for (var k in ilist) {
|
var ilist = document.getElementsByTagName("input");
|
||||||
if (ilist[k].type == "text" || ilist[k].type == "password")
|
for (var k in ilist) {
|
||||||
ilist[k].value = "";
|
if (ilist[k].type == "text" || ilist[k].type == "password")
|
||||||
}
|
ilist[k].value = "";
|
||||||
|
}
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in New Issue