푸들푸들

이메일 유효성 검사 본문

구디아카데미/JAVA

이메일 유효성 검사

COCO_develop 2024. 11. 4. 12:31

email@emil.com 형식 검사 (<body>는 일부만)

<script>
function validateEmail() {
    const emailInput = document.getElementById('email').value;
    const regex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/; // regex: 정규표현식(Regular Expression)
    if (!regex.test(emailInput)) {
    	alert("이메일 형식을 확인하세요(email@email.com)");
    }
} // -> <button onclick="validateEmail()"> onclick: 버튼에 함수 연결
</script>

<body>
    <table>
        <tr>
            <td>Email</td>
            <td>
                <input type="email" name="email" id="email">
                <button onclick="validateEmail()">Email 검사</button>
            </td>
        </tr>
    </table>
<body>

 

<button onclick="validateEmail()"> onclick: 버튼에 함수 연결

 

'구디아카데미 > JAVA' 카테고리의 다른 글

제목 CSS  (1) 2024.11.04
1104 동적 Update문  (0) 2024.11.04
1104 [Sakila] addStaff.jsp  (0) 2024.11.04
Github 잔디  (4) 2024.11.02
Spring 설치  (1) 2024.11.02