我試圖設置一個表單,允許您輸入一個授予訪問特定URL的密碼。如何使用多個選項創建輸入表單?
例如,輸入「臉譜」,它需要你在www.facebook.com 進入「雅虎」,它向您發送www.yahoo.com 進入,「谷歌」,你....得到它。 如果輸入除這些單詞之外的任何內容,則會發生錯誤。
這是我到目前爲止有:
<script language="javascript">
<!--//
/*This Script allows people to enter by using a form that asks for a
UserID and Password*/
function pasuser(form) {
if(form.id.value=="google") { location="http://www.google.com" }
else if(form.id.value=="facebook") { location="http://www.facebook.com" }
else if(form.id.value=="yahoo") { location="http://www.yahoo.com" }
else {alert("Invalid Password")}
}
//-->
</script>
<form name="login">
<input name="id" type="text">
<input type="button" value="Enter Class" onClick="pasuser(this.form)">
</form>
然而,這不起作用!有人可以幫我設置這個!我真的想有超過3個選項。
謝謝!
如果你要指定你收到的錯誤,那就太好了......今天我把我的心靈留在家裏。 – 2009-12-08 11:11:32
'onClick'應該是'onclick' – Amarghosh 2009-12-08 11:12:59
請改正這個問題,避免使用*密碼*。除非你確實是指*憑證*意義上的密碼。在這種情況下:不。 – 2009-12-08 11:13:08