如何将表格包装在 div 中?
我正在使用 $("table").each(function() 来定位表,然后我需要将其包含在 div 中这是我的代码片段
var strToAppend = "<div>Blah Blah</div>
$(this).wrap(function(){
return "<div class = 'tabDiv' id='tabDiv' + tNum +">" + $(this) + "</div>" + strToAppend;
});
this crates [object Object] 在表格之前但没有 strToAppend
在网页中看到 [object Object] 我做错了什么?