Jump to content
php.lv forumi
  • 0

kā iztukšot html formas input lauku


Wuu

Question

				<div id="login">
				<form name="login_rem">
				<input id="login_rem1" class="login" type="text" value=""/>
				<input id="login_rem2" class="password" type="password" value=""/>
				</form>
				<script type="text/javascript">
					document.login_rem.login_rem1.value = "";
					document.login_rem.login_rem2.value = "";
				</script>
			</div>

Kā iztukšot html formas input lauku?

Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0

Es tev neticu. Tas strādā 100%

Varbūt tu domāji prasīt kā novākt formu automātisku aizpildīšanu, ko browseros var ieslēgt? Tad pasērčo gūglē "turn off form autocomplete".

draugos formas laukiem ir random name vārds, tb katreiz citādāks, tāpēc browseris to "neatcerās" (īstenībā tas atcerās, tik katreiz ar citu vārdu, tāpēc lietotajam izskatās, ka neatcerās).

Link to comment
Share on other sites

  • 0
<form method="get" action="script.php" name="myForm" onsubmit="clearPass()">
<input type="password" name="pass" id="pass" />
<input type="submit" name="sub" value="Submit" />
</form>
<script type="text/javascript">
function clearPass()
{
document.myForm.submit();
document.getElementById("pass").value = ""; //tik kāda jēga, jo lapa tāpat pārlādēsies
}
</script>

Link to comment
Share on other sites

  • 0
bubu tiešām nestrādā :(

Nemānies. Viss strādā - iekopē šo tukša html failiņā un pārliecinies pats :)

<html><body>
<form name="login_rem">
<input id="login_rem1" class="login" type="text" value="asdf"/>
<input id="login_rem2" class="password" type="password" value="ghijk"/>
</form>
<script type="text/javascript">
document.getElementById("login_rem1").value = "";
document.getElementById("login_rem2").value = "";
</script>
</body></html>

Link to comment
Share on other sites

  • 0

Ko vispār var ņemties ar tādiem "nestrādā"? Ciet topiku un miers. Ne viņš precīzu kodu iedeva, kas nestrādā, ne acimredzot ir lasījis kaut vienu atbildi uz savu jautājumu, jo piedāvātie varianti nu kā vēl strādā. Nervus tikai bendē.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...