gpt4 book ai didi

基于屏幕宽度和高度的 jQuery UI 对话框宽度和高度

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

目前(jQuery 1.4.4 和 UI 1.8.8)我使用以下内容来设置对话框的属性:(我尝试将对话框设置为比屏幕的高度和宽度小 180px。)

$("#dialog").dialog({ 
bgiframe: true,
position: 'center',
width: $(window).width()-180,
height: $(window).height()-180,
title: ititle,
modal: true,
buttons: { "Close": function() { $(this).dialog("destroy"); }}
});

上面的代码在 FF 中工作正常,但在 IE 8 中失败。

这是设置宽度和高度的正确方法还是我应该做一些不同的事情?

最佳答案

这在 IE8 中对我有用:

var winW = $(window).width() - 180;
var winH = $(window).height() - 180;

$( "#dialog" ).dialog({
autoOpen: false,
height: winH,
width: winW,
modal: true
});

不过,您需要在页面顶部添加它

<!DOCTYPE html>

关于基于屏幕宽度和高度的 jQuery UI 对话框宽度和高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4726327/

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