这是我的问题 - 我正试图在我的网站上为委员会成员制作一个锁定的页面...当我将图像作为表单的输入时,它会在浏览器的导航栏中添加一些奇怪的内容。 。(例如:?x = 632& y = 43)这使我无法正确链接到正确的页面
以下是锁定页面链接的代码 -
<div class="logon">
<SCRIPT>
function passWord() {
var testV = 1;
var pass1 = prompt('Please Enter The Password','');
while (testV < 3) {
if (!pass1)
history.go(0);
if (pass1.toLowerCase() == "qwertyuiop") {
alert('You Got it Right!');
window.open('target.html');
break;
}
testV+=1;
var pass1 =
prompt('Access Denied - Password Incorrect, Please Try Again.','Password');
}
if (pass1.toLowerCase()!="password" & testV ==3)
history.go(0);
return " ";
}
</SCRIPT>
<FORM>
<input type="image" class="logonimg" src="/img/Committee Member Access.png" onClick="passWord()">
</FORM>
</div>
以下是该页面的CSS
.logon {
position: fixed;
bottom: 0;
right: 0;
background-color: #ff9999;
border: 5px solid #ff9999;
border-right: 0;
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
.logonimg {
height: auto;
width: 10%;
position: fixed;
bottom: 0;
right: 0;
}
我该如何解决这个问题?
提前致谢!