gpt4 book ai didi

JQueryUI 对话框大小

转载 作者:行者123 更新时间:2023-12-03 21:34:51 27 4
gpt4 key购买 nike

我是 JQueryUI 的新手,虽然我有一个对话框正在工作,但它没有以我认为指定的大小打开。为什么定义对话框时设置宽度和高度不会影响对话框的初始大小?如何将其设为 600 像素 x 500 像素?

这是定义对话框的 div:

<div id="dialog-form" title="Create Appointment">   
<form> . . . </form>
</div>

下面是创建对话框的 JavaScript:

$(function() {
$("#dialog-form").dialog({
autoOpen: false,
maxWidth:600,
maxHeight: 500,
width: 600,
height: 500,
modal: true,
buttons: {
"Create": function() {
$(this).dialog("close");
},
Cancel: function() {
$(this).dialog("close");
}
},
close: function() {
}
});

以及定义打开它的按钮的 JavaScript:

$("#create-appt")
.button()
.click(function() {
$("#dialog-form").dialog("open");
});
});
<小时/>

编辑:

我现在看到了问题:这本来可以正常工作,除非我使用 --app=... 命令行选项在 Google Chrome 中运行它,所以它没有重新加载整个应用程序。

最佳答案

问题:为什么定义对话框时设置宽度和高度不会影响对话框的初始大小?

答案:确实如此...您使用的是什么浏览器以及 jQuery 的版本。

我将您的代码从上面剪切/粘贴到一个小示例中,它工作得很好...我将完整的示例粘贴在下面,您可以在最后尝试一下。

 <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>jQuery UI Example Page</title>
<link type="text/css" href="css/ui-lightness/jquery-ui-1.8.11.custom.css" rel="stylesheet" />
<script type="text/javascript" src="js/jquery-1.5.1.min.js"></script>
<script type="text/javascript" src="js/jquery-ui-1.8.11.custom.min.js"> </script>
<script type="text/javascript">
$(document).ready(function () {
$(function() {
$("#dialog-form").dialog({
autoOpen: false,
maxWidth:600,
maxHeight: 500,
width: 600,
height: 500,
modal: true,
buttons: {
"Create": function() {
$(this).dialog("close");
},
Cancel: function() {
$(this).dialog("close");
}
},
close: function() {
}
});
});

$("#create-appt")
.button()
.click(function() {
$("#dialog-form").dialog("open");
});
});
</script>

</head>
<body>
<h1>test</h1>
<div id="dialog-form" title="Create Appointment">
<p> this is my test </p>
</div>
<input type="button" id="create-appt" value="test"/>
</body>
</html>

关于JQueryUI 对话框大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5625835/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com