jqTouch 为什么ul不展开?

发布于 2024-11-26 06:19:33 字数 708 浏览 1 评论 0原文

编辑:这个问题得到了解决,感谢 @noShowP 的建议,

我正在用 *li*s 填充一个无序列表,其中包含 ajax 请求后的 a 。这是我为此使用的代码:

li = $("<li><a val=\"" + $(this).parent().attr("id") + "\">" + $(this).text() + "</a></li>");
li.appendTo($("#subscriptions"));

正在添加行,但无序列表不会改变其高度。我可以在 Firefox 中看到列表项已添加,但 Firebug 报告 ul 的高度仍为 40px。

这是根据 firebug 生成的 HTML:

<ul id="subscriptions">
    <li><a val="s1" href="">subscription 1</a></li>
    <li><a val="s2" href="">subscription 2</a></li>
    <li><a val="s3" href="">subscription 3</a></li>
</ul>

那么,我在这里做错了什么?

EDIT: this question is resolved thanks to a suggestion from @noShowP

I am filling an unordered list with *li*s that contains a after a ajax request. Here's the code I'm using for that:

li = $("<li><a val=\"" + $(this).parent().attr("id") + "\">" + $(this).text() + "</a></li>");
li.appendTo($("#subscriptions"));

The rows are being added, but the unordered list doesn't change its height. I can see in Firefox that the list items are added, but Firebug reports the height of the ul as being still 40px.

Here's the generated HTML according to firebug:

<ul id="subscriptions">
    <li><a val="s1" href="">subscription 1</a></li>
    <li><a val="s2" href="">subscription 2</a></li>
    <li><a val="s3" href="">subscription 3</a></li>
</ul>

So, what am I doing wrong here?

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

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

发布评论

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

评论(1

方觉久 2024-12-03 06:19:33

我解决了这个问题。 noShowP 是正确的,有一种样式干扰了显示。

I solved this problem. noShowP was correct, there was a style that was disturbing the display.

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