wms's Programming&Study

[JavaScript] 경고창 alert 줄바꿈 개행 본문

Programming/JavaScript

[JavaScript] 경고창 alert 줄바꿈 개행

wms2275 2021. 3. 18. 18:00

 

  • \n - 개행
  • \t - 탭키를 눌렀을 때와 같이 들여쓰기

 

- 버튼 HTML

<button type="button" onclick="alertEvent()">경고창</button>

 

- 개행을 안한 경우

function alertEvent(){
	alert('경고창입니다.안내 메시지를 확인해주세요.');
}

 

개행을 한 경우

function alertEvent(){
	alert('경고창입니다. \n안내 메시지를 확인해주세요.');
}

 

 긴 안내문구는 개행을 함으로써 경고창 안내문구도 좀 더 가독성을 높일 수 있을 듯하다.