如何更改警告框大小? 我使用以下编码。
在Firefox中,警告框会自动调整大小但不会更改Chrome吗? 请给出解决方案。
window.alert("You answered all questions. Press OK to continue.");
答案 0 :(得分:1)
JQuery Alert Box
。<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery UI Resizable - Default functionality</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.9.1.js"></script>
<script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css">
<style>
#resizable { width: 150px; height: 150px; padding: 0.5em; }
#resizable h3 { text-align: center; margin: 0; }
</style>
<script>
$(function() {
$( "#resizable" ).resizable();
});
</script>
</head>
<body>
<div id="resizable" class="ui-widget-content">
<h3 class="ui-widget-header">Resizable</h3>
</div>
</body>
</html>
答案 1 :(得分:0)
澄清一下:当您使用window.alert()时,您使用的是浏览器的资源,而不是您网页的资源。然后是负责创建警报框的浏览器,因此您无法影响其属性(如大小等)。
答案 2 :(得分:0)
我在字符串末尾的新行中放置了一个空格,将长度增加到标准Windows消息框。
Alert ("Hello World\n ");