找回密碼

請輸入您當初註冊會員時,帳號ID, 姓名, 出生年月日,
我們將寄給您一封認證會員ID和密碼的信件。 個人資料查詢後,便能在下一個視窗設置新密碼。

帳號ID:

姓名:

出生年月日: 年    月   

電話號碼:

var pType = $(":input:radio[name=pType]:checked").val(); if (pType == "mb_name") { if (f.mb_name.value == "") { alert("Please input your name."); f.mb_name.focus(); return false; } f.pTypeValue.value = f.mb_name.value; } else if (pType == "mb_birth") { if (f.mb_birth_year.value == "") { alert("Please input your birthday year."); f.mb_birth_year.focus(); return false; } if (f.mb_birth_month.value == "") { alert("Please input your birthday month."); f.mb_birth_month.focus(); return false; } if (f.mb_birth_day.value == "") { alert("Please input your birthday day."); f.mb_birth_day.focus(); return false; } f.pTypeValue.value = f.mb_birth_year.value + "-" + f.mb_birth_month.value + "-" + f.mb_birth_day.value; } if (!chk_captcha('您輸入的驗證碼有誤,或超過輸入次數。\n\n請點擊刷新頁面,重新輸入。')) return false; return true; } $(function() { var sw = screen.width; var sh = screen.height; var cw = document.body.clientWidth; var ch = document.body.clientHeight; var top = sh / 2 - ch / 2 - 100; var left = sw / 2 - cw / 2; moveTo(left, top); $("#pTypeName").on("click", function() { $("#pTypeStr").html("姓名"); $("#mb_name_area").css("display", "block"); $("#mb_birth_area").css("display", "none"); //$("#pTypeValue").attr("placeholder", "Name"); }); $("#pTypeBirth").on("click", function() { $("#pTypeStr").html("生日"); $("#mb_name_area").css("display", "none"); $("#mb_birth_area").css("display", "block"); //$("#pTypeValue").attr("placeholder", "Birth Day"); }); });