我有以下代碼:一類添加到功能goForit()
function goForit() {
var passwd;
passwd = document.forms['giftForm'].pass.value;
if(passwd=="yes"){
window.open ('eat.html','_self',false)
}
else{
alert('Password wrong');
}
}
<form id="giftForm">
<input type="text" id="pass" placeholder="" style="font-size:150%;"/>
<br />
<input type="button" onClick="goForit()" value="Submit" style="font-size:100%; margin-top:15px;" />
</form>
如果有人輸入「是」作爲密碼,並點擊提交按鈕。用戶將被重定向到eat.html頁面。
我想通過.carrot類與重定向,所以正確的圖像將出現。如何將.carrot類添加到以下代碼?
如果您也使用PHP,那麼您可以使用GET來傳遞它。不知道是否只有javascript纔可能。 –
哦,上帝,請告訴我,這不是你如何認證用戶。 – xbonez
@xbonez甚至沒有提起......我會死的哈哈。 –