FRNDS我需要一些幫助.. 在這段代碼我已經驗證了2個文本框。 幫助,我需要的是一旦沒有數據的形式不應該轉到check.php但有一個JavaScript警告框被輸入:無效數據 我需要這在Javascript ...JavaScript表單驗證,如果無效無提交
function f1()
{
var v1=document.getElementById("uname").value;
var v2=document.getElementById("pass").value;
if(v1=="" || v2=="")
alert("Please Fill It..!");
}
Username:<input type="text" id="uname" placeholder="username" title="Enter your Username" name="uname"/>
Password:
<input type="password" id="pass" placeholder="password" title="Enter your password" name="pass"/>
<input type="submit" value="Login"/>
<input type="reset" value="clear"/>
</form>
您目前使用的代碼面臨什麼問題? –
究竟是你面臨的問題? –
兄弟我使用<形式行動=「check.php」>連的onsubmit返回false check.php正在執行.... – Bright