如何删除当前添加到 div 的类并根据条件集添加新类?
我的 CSS 包含 3 个不同的类:
.red { background:red }
.blue { background:blue }
.green { background:green }
当时我只想#box
根据 jquery 变量设置的条件向 div id 添加一个类my_color
。my_color
有3个值的血,花园,天空当时只有一套。
jQuery:
<script type="text/javascript">
(document).ready(function() {
if(my_color == "blood")
{ /*help me to remove current class and add .red */}
else if(my_color == "garden")
{/*help me to remove current class and add .green */ }
else if(my_color == "sky")
{/*help me to remove current class and add .blue */ }
});
</script>