如何在没有标题的情况下在javascript中显示简单警报 - 只是一个空白警报,只显示消息。
答案 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;