包装所有 3 个类元素

发布于 2024-10-15 00:43:50 字数 336 浏览 3 评论 0原文

我一直试图将 3 个 div 封装在一个包装 div 中。到目前为止,我已经成功地完成了 2 个 div,但我无法弄清楚最后一个。

您可以在这里看到我的 JSFiddle: http://jsfiddle.net/cz9eY/

$('.input_jq_checkbox').each(function(){
$(this).next('label').andSelf().wrapAll('<div class="test"/>');
});

I'm stuck with trying to capsulate 3 divs inside one wrapping div. So far I have managed to get 2 divs wrapped up, but I can't figure out the last one.

You can see my JSFiddle here: http://jsfiddle.net/cz9eY/

$('.input_jq_checkbox').each(function(){
$(this).next('label').andSelf().wrapAll('<div class="test"/>');
});

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

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

发布评论

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

评论(1

强者自强 2024-10-22 00:43:50

如果您使用 $(this).nextAll(':lt(2)').andSelf() 您将获得标签和接下来的两个元素。

If you use $(this).nextAll(':lt(2)').andSelf() you'll get the label and the next two elements.

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