<form name="validation" onSubmit="return checkbae()">
이메일 주소 :<br>
<input type="text" size=18 name="emailcheck">
<input type="submit">
</form>
<script language="JavaScript1.2">
var testresults
function checkemail(){
var str=document.validation.emailcheck.value
var filter=/^(\w+(?:\.\w+)*)@((?:\w+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i
if (filter.test(str))
testresults=true
else{
alert("유효한 이메일 주소가 아닙니다")
testresults=false
}
return (testresults)
}
function checkbae(){
if (document.layers||document.getElementById||document.all)
return checkemail()
else
return true
}
</script>
이메일 주소 :<br>
<input type="text" size=18 name="emailcheck">
<input type="submit">
</form>
<script language="JavaScript1.2">
var testresults
function checkemail(){
var str=document.validation.emailcheck.value
var filter=/^(\w+(?:\.\w+)*)@((?:\w+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i
if (filter.test(str))
testresults=true
else{
alert("유효한 이메일 주소가 아닙니다")
testresults=false
}
return (testresults)
}
function checkbae(){
if (document.layers||document.getElementById||document.all)
return checkemail()
else
return true
}
</script>
반응형
'인터넷정보' 카테고리의 다른 글
자바스크립트 생성기 (0) | 2007.10.17 |
---|---|
자바스크립트 생성기 (0) | 2007.10.17 |
전송버튼에 '전송중...' 이라는 표시를 해 줍니다 (0) | 2007.10.17 |
전송버튼에 '전송중...' 이라는 표시를 해 줍니다 (0) | 2007.10.17 |
정규식을 사용한 이메일 주소 체크하기 (0) | 2007.10.17 |
일정 기간 동안 하루에 한번 팝업창 띄우기 (0) | 2007.10.17 |
일정 기간 동안 하루에 한번 팝업창 띄우기 (0) | 2007.10.17 |
특정 키보드키 제어하기 (0) | 2007.10.17 |
특정 키보드키 제어하기 (0) | 2007.10.17 |
파일 용량 계산 (Gb / Mb / Kb / Bytes) (0) | 2007.10.17 |