본문 바로가기

Front end/JS (JavaScript)

자바스크립트(JavaScript) 경고창 alert에서 텍스트 줄바꿈

728x90
<input type="button" onclick="alertFunc()" value="alertBtn"/>

<script>
function alertFunc()  {
    alert('first\nsecond\nthird');
}
</script>
728x90