請教一下大神門阿,最近有要寫個網頁mail驗證資訊,如果判斷為true就轉跳到下一個網頁,如果false就還是在原本網頁。有參考了網路文章語法如下:
<head>
<script type="text/javascript" language="JavaScript">
function checkEmail(remail) {
if (remail.search(/^[\w-]+(\.[\w-]+)*@[\w-]+(\.[\w-]+)+$/)!=-1) {
alert("Email 資料正確!");
}
else {
alert("Email 資料錯誤?請重新輸入!");
document.myForm.email.focus();
}
}
</script>
</head>
<body>
<form action="" method="post" name="myForm">
您的 Email:<input type="text" name="email" size="10">
<input type="button" value="前往下個網頁" onClick="checkEmail(document.myForm.email.value);">
</form>
</body>
可是阿,怎麼改都沒辦法轉跳到下一個網頁,可以求解嗎???感恩
你判斷完後...沒有form送出~
alert("Email 資料正確!");
document.myForm.submit();