close
語法展示:: http://home.graffiti.net/asdsfdsfs/
請用IE6.0或更新版本觀看語法特效展示
將以下程式碼複製,貼在<body>及</body>標籤之間。
<script language="JavaScript1.2">
<!--
var msg = "您輸入的密碼正確!";
var url = "http://tw.yahoo.com/";
function initArray() {
this.length = initArray.arguments.length;
for (var i = 0; i < this.length; i++) {
this[i] = initArray.arguments[i];
}
}
var password = new initArray(49,50,51,52);
var pass_count=0;
var cancel_key=27;
if (document.layers) document.captureEvents(Event.KEYPRESS)
function backhome(e){
if (document.layers){
//if (navigator.appName == "Netscape"){
if (e.which==password[pass_count]) {
checkpassword();
}
else {
pass_count=0;
}
}
else if (document.all){
if (event.keyCode==password[pass_count]){
checkpassword();
}
else {
pass_count=0;
}
}
}
document.onkeypress=backhome
function checkpassword() {
pass_count++;
if(pass_count>=password.length) {
if(confirm(msg)) window.location=url;
}
}
-->
</script>
在 var msg = "您輸入的密碼正確!"; 中修改密碼輸入正確後所得到的訊息 |
在 var url = "http://tw.yahoo.com/"; 中修改密碼輸入正確後連結的網址 |
在 var password = new initArray(49,50,51,52); 中修改所使用的密碼 |
全站熱搜
留言列表