如何包装在另一个中?
- 中?
我有一个无序列表,我想使用以下代码将其包装在 jQuery 中的另一个无序列表中:
$('ul.innerlist').prepend('<ul><li>');
$('ul.innerlist').append('</li></ul>');
但是,不是第一行创建开始标记,第二行创建结束标记(并包装 .innerlist< /code>),第一行似乎创建了打开和关闭标记,导致这样
<ul>
<li></li>
</ul>
<ul class="innerlist">
<li></li>
</ul>
而不是这样:
<ul>
<li>
<ul class="innerlist">
<li></li>
</ul>
</li>
</ul>
I have an unordered list that I would like to wrap inside another unordered list in jQuery, using the following code:
$('ul.innerlist').prepend('<ul><li>');
$('ul.innerlist').append('</li></ul>');
However, rather than the first line creating the opening tags and the second creating closing tags (and wrapping the .innerlist
), the first line appears to create both open and close tags, resulting in this
<ul>
<li></li>
</ul>
<ul class="innerlist">
<li></li>
</ul>
Instead of this:
<ul>
<li>
<ul class="innerlist">
<li></li>
</ul>
</li>
</ul>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这使用 jQuery 的
wrap()
方法 用元素包装所选元素你提供。示例: http://jsfiddle.net/patrick_dw/bD8LQ/
This uses jQuery's
wrap()
method to wrap the selected elements with the elements you provide.Example: http://jsfiddle.net/patrick_dw/bD8LQ/
请参阅 http://api.jquery.com/wrap/
See http://api.jquery.com/wrap/
尝试以下操作:
或
wrap
函数。try the following:
or the
wrap
function.