1

我刚开始为我的网站使用引导程序。我喜欢它的外观,我想对大量不同的博客文章进行一些更改,以包括引导样式。我不想通过数百篇文章来更改 div 的类元素。我可以做这样的事情:

<div class="important_note">
this is a old note that I want to use bootstrap styling on.
</div>

CSS:

<style>
.important_note{
  mimick(.alert)
}
</style>

alert 是一种引导样式。

如果这是一个简单的问题,我深表歉意,但网络开发并不是我的事。我也找不到任何类似的问题。谢谢你的帮助!

4

2 回答 2

2

使用 CSS,您可以执行以下操作:

.important_note, .alert{
//styling
}

这将对important_note和alert类应用相同的样式

于 2013-05-29T04:06:16.810 回答
0

如果不“升级”你的 CSS,如果它只是为每个受影响的元素添加一个类,你可以使用一个小脚本:

[].forEach.call(document.getElementsByClassName('important_note'), function(node) {
    node.classList.add('alert');
});

jQuery等价物:

$('.important_note').each(function() {
    $(this).addClass('alert');
}
于 2013-05-29T04:08:52.707 回答