包装所有 3 个类元素
我一直试图将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用
$(this).nextAll(':lt(2)').andSelf()
您将获得标签和接下来的两个元素。If you use
$(this).nextAll(':lt(2)').andSelf()
you'll get the label and the next two elements.