我有以下代码:
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 类添加到以下代码中?