我有CSS這樣的:jQuery的從一個元素中刪除:: CSS後
.support-hub .app-detail:after {
content: "";
display: table;
clear: both;
}
螢火蟲其顯示爲
.support-hub .app-detail::after {
clear: both;
content: "";
display: table;
}
在我的代碼我這樣做:
$('.support-hub .app-detail:after').css({'display':'inline'});
但是這個顯示屬性沒有改變。 請幫忙。非常少的文檔供:後使用jQuery
CSS操縱
我相信以後()用於插入元素。 – NeoWang