我有这个代码
$(textObject).children().each(function() {
$(this).removeAttr('style');
console.log('removing style from first level element: '+this);
});
但我希望它也影响所有嵌套元素,这个只影响第一级子元素。我也试过
$(this).children().removeAttr('style');
这是行不通的。
我也试过
$(this).children().css('font-size','');
这也不起作用。
我想完成什么可能很清楚。