密码保护页面(一)
看到效果显示了吧!
Password:
输入menu1试试
脚本说明: 第一步:把如下代码加入的<head>区域中 <script language="JavaScript"> <!-- function hidden(){ var location=document.input.password.value + ".htm"; this.location.href = location; } // -- End Hiding Here // --> </script> 第二步:在<body>区域中加入 <form name="input"> <table> <tr> <td>Password:<p><input type="text" size="25" name="password"></p> <p><input type="button" value="Enter" onclick="hidden()"></td> </tr> </table> <table width="196"> </table> </form>