1. ホーム
  2. javascript

[解決済み] アラートボックスのスタイルを変更するには?

2022-05-14 11:32:23

質問

の中の"OK"ボタンのスタイルを変更したいのですが、どうすればよいでしょうか? アラート ボックスのスタイルを変更する必要があります。

<head>
    <script type="text/javascript">
        function show_alert() {
            alert("Hello! I am an alert box!");
        }
    </script>
</head>
<body>
    <input type="button" onclick="show_alert()" value="Show alert box" />
</body>

どのように解決するのですか?

アラートボックスはシステムオブジェクトであり、CSSの対象ではありません。このスタイルを実現するには、HTML 要素を作成して alert() の機能を利用する必要があります。jQuery UI Dialogueは、基本的に私が説明したように動作して、あなたに代わって多くの作業を行います。 リンク .

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>jQuery UI Dialog - Default functionality</title>
  <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
  <link rel="stylesheet" href="/resources/demos/style.css">
  <script src="https://code.jquery.com/jquery-1.12.4.js"></script>
  <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
  <script>
  $( function() {
    $( "#dialog" ).dialog();
  } );
  </script>
</head>
<body>
 
<div id="dialog" title="Basic dialog">
  <p>This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p>
</div>
 
 
</body>
</html>