텍스트 바꾸기

박서현·2023년 8월 4일
0
post-thumbnail
post-custom-banner
<button id="btnLogin" onclick="login()">로그인하기</button>
function login() {
	let email = $('#emailLogin').val();
	if (email == '') {
		alert('이메일을 입력해주세요')
	} else {
		if(email.includes('@') == true) {
			$('#btnLogin').text('로그인중입니다')
		} else {
			alert('이메일 형식이 아닙니다.')
		}

	}
}
post-custom-banner

0개의 댓글