摆脱选项卡控件的该选项卡下的行,可以通过以下方法实现:
.tab-content {
display: none;
}
document.querySelectorAll('.tab-content').forEach(function(tabContent) {
tabContent.style.display = 'none';
});
<div class="tab-content" style="display:none;">
...
</div>
$('.tab-content').hide();
以上方法可以帮助您摆脱选项卡控件下的行。
领取专属 10元无门槛券
手把手带您无忧上云