Ciao ho questo script che mi controlla se i campi user e pass sono vuoti
in un file .js esterno (testform.js)
function chkForm()
{
str_out = "";
if(login.username.value == "")
str_out += "Inserire il nome utente" + "\n";
if(login.password.value == "")
str_out += "Inserire la password";
if(str_out=="")
return true;
else
{
alert(str_out);
return false;
}
}
ora io me lo richiamo nella pagina jsp con:
<script type="text/javascript" src="scripts/testform.js"/>
e poi nel form:
<form id="login" name="login" method="post" action="index.jsp" onsubmit="return chk_form();">
Username: <input type="text" id="username" name="username"/>
Password: <input type="password" id="password" name="password" />
<input type="submit" id="accedi" value="Accedi" />
</form>
Perchè non va?? Explorer e Firefox lo ignorano proprio lo script!!!
in un file .js esterno (testform.js)
function chkForm()
{
str_out = "";
if(login.username.value == "")
str_out += "Inserire il nome utente" + "\n";
if(login.password.value == "")
str_out += "Inserire la password";
if(str_out=="")
return true;
else
{
alert(str_out);
return false;
}
}
ora io me lo richiamo nella pagina jsp con:
<script type="text/javascript" src="scripts/testform.js"/>
e poi nel form:
<form id="login" name="login" method="post" action="index.jsp" onsubmit="return chk_form();">
Username: <input type="text" id="username" name="username"/>
Password: <input type="password" id="password" name="password" />
<input type="submit" id="accedi" value="Accedi" />
</form>
Perchè non va?? Explorer e Firefox lo ignorano proprio lo script!!!