gpt4 book ai didi

jquery - 如何在jquery colorbox中设置自动高度?

转载 作者:行者123 更新时间:2023-12-01 07:19:55 26 4
gpt4 key购买 nike

我正在尝试打开 colorbox onclick。没关系。但现在我想将颜色框高度设置为自动(根据返回的内容高度的高度),并且浏览器的滚动条将在颜色框内容高度的高度内滚动。这是我的代码

$('body').on('click', 'a.post', function(e) {
e.preventDefault();
$.colorbox({
width: "850px",
height: "600px",
iframe: true,
href:this.href
});
});

有什么帮助吗? (提前致谢)

最佳答案

您可以尝试通过 height() 方法使用 Height:

var objHeight=$(window).height()-100; // reduce 100, so that it will fit in the container

$.colorbox({
width: "850px",
height: objHeight,
iframe: true,
href: this.href
});

关于jquery - 如何在jquery colorbox中设置自动高度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14952804/

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