动态加载内容时增加 div 的高度

发布于 2024-08-13 19:01:44 字数 1681 浏览 3 评论 0原文

我有一个包含无序列表的 div...在一些用户操作之后,我使用更长的列表加载 div,即包含比前一个列表项更多的列表项。我使用 jquery 的高级 ajax 函数来执行此操作。

问题是当我通过ajax加载它时,列表元素溢出了div的底部,并且其中一些元素显示在div之外。

我没有为包含的 div 设置任何高度,假设它会扩展以容纳任何未来更长的列表。 我将发布下面的代码,如果有人弄清楚这一点,我将非常感激......

#sidebar1 {
        float: left;
        width: 15%; /* since this element is floated, a width must be given */
        background: #FFE8BF; /* the background color will be displayed for the length of the content in the column, but no further */
        padding: 15px 0; /* top and bottom padding create visual space within this div  */
        text-align:center;
    }

    <div id="sidebar1">

                    <div class="sidebarmenu">

                     <ul id="sidebarmenu1">
                            <li>
                                <a href="#" id="loadHotel" >
                                    HOTEL
                                </a>
                            </li>
                            <li>
                                <a href="#" id="loadCountry">
                                    COUNTRY
                                </a>
                            </li>

                            <li>
                                <a href="#" id="loadCity">
                                    CITY
                                </a>
                            </li>


                        </ul>
                    </div>

                </div>  <!-- end #sidebar1 -->

我将列表元素加载到

    希望我清楚... 提前非常感谢....

I have a div which contains an unordered list... After some user actions i load the div with a longer list i.e. containing more list items than the previous one. I use jquery's higher level ajax functions to do this.

The problem is when i load it through ajax the list elements overflow the div's bottom portion and some of them get's displayed out of the div.

I haven't set any heights for the containing div assuming that it will expand to accomodate any future longer lists.
I'll post the code below and will be extremely grateful if someone figures this out....

#sidebar1 {
        float: left;
        width: 15%; /* since this element is floated, a width must be given */
        background: #FFE8BF; /* the background color will be displayed for the length of the content in the column, but no further */
        padding: 15px 0; /* top and bottom padding create visual space within this div  */
        text-align:center;
    }

    <div id="sidebar1">

                    <div class="sidebarmenu">

                     <ul id="sidebarmenu1">
                            <li>
                                <a href="#" id="loadHotel" >
                                    HOTEL
                                </a>
                            </li>
                            <li>
                                <a href="#" id="loadCountry">
                                    COUNTRY
                                </a>
                            </li>

                            <li>
                                <a href="#" id="loadCity">
                                    CITY
                                </a>
                            </li>


                        </ul>
                    </div>

                </div>  <!-- end #sidebar1 -->

I load the list elements into the <ul id = "sidebarmenu1">
Hope i'm clear...
Thanks a lot in advance....

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

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

发布评论

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

评论(2

反目相谮 2024-08-20 19:01:44

你尝试过吗:

$('ul#sidebarmenu1').removeClass('class here').AddClass('class here');

应该可以

have you tried:

$('ul#sidebarmenu1').removeClass('class here').AddClass('class here');

that should work

前事休说 2024-08-20 19:01:44

找到了解决弯曲角问题的方法......!!!

在我使用ajax加载菜单项后,我使用jquery来增加div的高度,然后调用curvycorns来圆化边缘......!

瞧..!!!!

Figured out a workaround for the curvy corner problem...!!!

after i load the menu items with ajax, i use jquery to increase the height of the div and then call curvy corners to round the edges...!

Voila..!!!!

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