Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当另一个 div (.column.c) 的内容在或多或少之间发生变化时,我试图让一个 div (.bottom) 自动调整大小。
我猜我需要使用 jquery,但我不知道从哪里开始。如果能顺利调整大小就好了!
我正在使用我创建的内容类型的 drupal 和视图幻灯片。
欢呼伙计们。
尝试这个:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> <script type="text/javascript"> $(function() { $(".bottom").height($(".column.c").height()); }); </script>
您需要将此代码放在更改.column.cdiv 大小的任何事件下。
.column.c