gpt4 book ai didi

jQuery:如何重置页面上所有元素的位置?

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

假设我有一堆“苹果”类的 DIV,以及另一堆“橙色”类的 DIV。

所有这些 DIV 都有不同的位置,但我想使用 jQuery 函数为它们分配相对于页面上的父容器的新位置,而无需重新加载。

那么,例如,如何在不重新加载页面的情况下将所有“apple”类的 DIV 设置为相对于父容器的“top”值“200px”?

谢谢!

最佳答案

var $apples = $('.apple'); // caching your elements

$apples.parent().css('position', 'relative'); // setting the parent to a relative position

$apples.css('position', 'absolute') // setting an absolute position, relative to the parent
.css('top', '200px'); // setting the top position

关于jQuery:如何重置页面上所有元素的位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2842112/

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