jqTouch 为什么ul不展开?
编辑:这个问题得到了解决,感谢 @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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我解决了这个问题。 noShowP 是正确的,有一种样式干扰了显示。
I solved this problem. noShowP was correct, there was a style that was disturbing the display.