我似乎无法让对话框打开到我想要的高度,我可以看到标题栏,但在用鼠标展开对话框之前不要获取内容
我的代码 http://jsfiddle.net/Uu2G4/3/
<div id="ImageDialog" style="display:none;height:500px;" class="ImageDialog ui-dialog">
<div style="height:500px;">
This is making me crazy!!!!
<img class="productImage" src="http://static.jquery.com/files/rocker/images/logo_jquery_215x53.gif" />
</div>
</div>
$(document).ready(function () {
// init the image popup dialog
$("#ImageDialog").dialog({ autoOpen: false, height: 500 });
$(".open").click(function()
{
$("#ImageDialog").dialog("open");
});
$(".close").click(function()
{
$("#ImageDialog").dialog("close");
});
});
答案 0 :(得分:3)
我在HTML
中将div的类设置为ui-dialog删除此问题解决了问题。
<div id="ImageDialog" style="display:none;height:500px;" class="ImageDialog">
<div style="height:500px;">
This is making me crazy!!!!
<img class="productImage" src="http://static.jquery.com/files/rocker/images/logo_jquery_215x53.gif" />
</div>
</div>
$(document).ready(function () {
// init the image popup dialog
$("#ImageDialog").dialog({ autoOpen: false, height: 500 });
$(".open").click(function()
{
$("#ImageDialog").dialog("open");
});
$(".close").click(function()
{
$("#ImageDialog").dialog("close");
});
});