如何在Javascript中显示警报

时间:2017-04-30 06:04:35

标签: javascript html alert

如何在没有标题的情况下在javascript中显示简单警报 - 只是一个空白警报,只显示消息。

1 个答案:

答案 0 :(得分:1)

使用浏览器的原生警报框是不可能的。但是,您始终可以使用JavaScript警告框。



  function showAlert(){
    $( "#dialog" ).dialog({modal: true});
}

  <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.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>

<body>
<input type="button" value="Alert" onClick='showAlert()'>
<div id="dialog" title="" style="display: none;">
  <p>Alert box. Lorem Ipsum.</p>
</div>
 
</body>
&#13;
&#13;
&#13;