我有以下代码:
var parentQuestionDiv = $('.ui-droppable').find("[Question='" + parentQuestionId + "']");
var nestedQuestionDiv = $(this).parent();
$(parentQuestionDiv, nestedQuestionDiv).wrapAll("<div id='nestedQuestionGroup' style='border: 1px solid #000'></div>");
我想取两个div,并将内部放置一个新的父div。我遇到的问题是parentQuestionDiv
仅被包裹。不是nestedQuestionDiv
。
如果我将$(parentQuestionDiv, nestedQuestionDiv
更改为$(nestedQuestionDiv, parentQuestionDiv)
,nestedQuestionDiv
只会被包裹。
那为什么它不适用于两个div?我如何包装div?
答案 0 :(得分:1)
second argument in jQuery is for defining the context用于搜索元素,因此不会发生任何事情。要使其工作,您需要使用 add()
方法将它们合并,然后使用 wrapAll()
方法。
parentQuestionDiv.add(nestedQuestionDiv).wrapAll("<div id='nestedQuestionGroup' style='border: 1px solid #000'></div>");
答案 1 :(得分:0)
您需要将其添加到当前集合中:
parentQuestionDiv.add(nestedQuestionDiv).wrapAll("<div id='nestedQuestionGroup' style='border: 1px solid #000'></div>");