Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

화면 중앙에 JavaScript 경고 상자를 표시하려면 어떻게 해야 합니까?


중간에 JavaScript 경고 상자를 표시하려면 사용자 정의 경고 상자를 사용해야 합니다. 그 아래에 그에 따라 스타일을 지정하고 중앙에 배치합니다. 이를 위해 "top" 및 "left" CSS 속성을 사용하십시오. 50%로 설정하지만 아래 버튼에서 볼 수 있듯이 속성을 40%로 사용하여 버튼과 정렬합니다.

예시

<!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: #F3F5F6;
            color: #000000;
            border: 1px solid #aaa;
            position: fixed;
            width: 300px;
            height: 100px;
            left: 40%;
            top: 40%;
            box-sizing: border-box;
            text-align: center;
         }
         #confirm button {
            background-color: #FFFFFF;
            display: inline-block;
            border-radius: 12px;
            border: 4px solid #aaa;
            padding: 5px;
            text-align: center;
            width: 60px;
            cursor: pointer;
         }
         #confirm .message {
            text-align: left;
         }
      </style>
   </head>
   <body>
      <div id="confirm">
         <div class="message">This is a warning message.</div><br>
         <button class="yes">OK</button>
      </div>
      <input type="button" value="Click Me" onclick="functionAlert();" />
   </body>
</html>