Computer >> 컴퓨터 >  >> 프로그래밍 >> JavaScript

JavaScript로 경고(Alert) 메시지 텍스트 색상을 변경하는 방법

아래 예제 코드를 실행하면 경고 메시지의 텍스트 색상을 변경할 수 있습니다. 기본 alert() 함수는 브라우저가 제공하기 때문에 내부 요소의 스타일을 직접 수정할 수 없습니다. 따라서 텍스트 색상을 바꾸려면 커스텀 경고 상자를 직접 만들어야 합니다.

여기서는 자바스크립트 라이브러리인 jQuery를 사용해 커스텀 경고 상자를 구현하고, CSS를 통해 경고 메시지의 텍스트 색상을 #FCD116(노란색 계열)으로 변경합니다.

예제

다음은 전체 동작 코드입니다. 버튼을 클릭하면 커스텀 경고 상자가 나타나며, 메시지는 지정한 색상으로 표시됩니다.

<!DOCTYPE html>
<html>
   <head>
      <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js">
      </script>
      <script>
         function functionAlert(msg, myYes) {
            var confirmBox = $("#confirm");
            confirmBox.find(".message").text(msg);
            confirmBox.find(".yes").unbind().click(function() {
               confirmBox.hide();
            });
            confirmBox.find(".yes").click(myYes);
            confirmBox.show();
         }
      </script>
      <style>
      #confirm {
         display: none;
         background-color: #514E61;
         color: #FCD116;
         border: 1px solid #aaa;
         position: fixed;
         width: 250px;
         left: 50%;
         margin-left: -100px;
         padding: 6px 8px 8px;
         box-sizing: border-box;
         text-align: center;
      }
      #confirm button {
         background-color: #48E5DA;
         display: inline-block;
         border-radius: 5px;
         border: 1px solid #aaa;
         padding: 5px;
         text-align: center;
         width: 80px;
         cursor: pointer;
      }
      #confirm .message {
         text-align: left;
      }
      </style>
   </head>
   <body>
      <div id="confirm">
         <div class="message">This is a warning message.</div>
         <button class="yes">OK</button>
      </div>
      <input type="button" value="Click Me" onclick="functionAlert();" />
   </body>
</html>

코드 설명

  • #confirm 스타일: color: #FCD116; 속성이 경고 메시지의 텍스트 색상을 결정합니다. 원하는 색상으로 자유롭게 변경할 수 있습니다.
  • functionAlert() 함수: jQuery로 #confirm
영역을 찾아 메시지를 설정하고, 확인 버튼 클릭 시 상자를 숨깁니다.
  • position: fixed: 화면 중앙에 경고 상자가 고정되어 나타나도록 합니다.
  • 이처럼 커스텀 경고 상자를 사용하면 배경색, 글꼴, 크기 등 알림창의 모든 디자인 요소를 자유롭게 제어할 수 있습니다.