請輸入您出生的西元年例如: "1975"
生肖計算
將下列程式碼複製至<body>程式碼</body>之間。
<script LANGUAGE="JavaScript"> <!-- function getpet () { var toyear = 1997; var birthyear = document.frm.inyear.value; var birthpet="Ox" x = (toyear - birthyear) % 12 if ((x == 1) || (x == -11)) { birthpet="鼠" } else { if (x == 0) { birthpet="牛" } else { if ((x == 11) || (x == -1)) { birthpet="虎" } else { if ((x == 10) || (x == -2)) { birthpet="兔" } else { if ((x == 9) || (x == -3)) { birthpet="龍" } else { if ((x == 8) || (x == -4)) { birthpet="蛇" } else { if ((x == 7) || (x == -5)) { birthpet="馬" } else { if ((x == 6) || (x == -6)) { birthpet="羊" } else { if ((x == 5) || (x == -7)) { birthpet="猴" } else { if ((x == 4) || (x == -8)) { birthpet="雞" } else { if ((x == 3) || (x == -9)) { birthpet="狗" } else { if ((x == 2) || (x == -10)) { birthpet="豬" } } } } } } } } } } } } document.frm.birth.value = birthpet; } // --> </script> <body background="jpg/01_bkg1.jpg"> <font face="標楷體" size="4" color="#991BC2"><p align="center">請輸入您出生的西元年例如: "1975"</font></p> <form NAME="frm"> <p align="center"><input TYPE="text" SIZE="4" NAME="inyear" value="1975"> <input TYPE="button" VALUE="您的幸運生肖是" onClick="getpet()"><br> </p> <p align="center"><input TYPE="text" SIZE="9" NAME="birth"></p> </form> |