如何将值设置为另一个元素的高度

发布于 2024-10-10 15:17:56 字数 88 浏览 2 评论 0原文

我的网站上有一个图像列表,由于观众屏幕上的分辨率不同,div 的总高度会发生变化。我需要将“top”值设置为“.photoswrap”的高度。 感谢您的任何帮助。

I have a list of images on my website, and I because of different resolutions on viewers screens, the total height of the div changes. I need to set the "top" value as the height of ".photoswrap".
Thanks for any help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

小镇女孩 2024-10-17 15:17:56
 $("#something").css("top", $(".photoswrap").css("height"));
 $("#something").css("top", $(".photoswrap").css("height"));
残龙傲雪 2024-10-17 15:17:56

我无法通过查看代码给出有效答案,但是:

var $someDiv = $('div');
$someDiv.css('top', $('.photoswrap', $someDiv).height());

或者如果 .photoswrap 不在 div 内部:

$('div').css('top', $('.photoswrap').height());

I cannot give a working answer with seeing the code, but:

var $someDiv = $('div');
$someDiv.css('top', $('.photoswrap', $someDiv).height());

Or if .photoswrap is not inside of the div specifically:

$('div').css('top', $('.photoswrap').height());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文