如何刪除添加到div的當前類,並根據條件集添加新的類?刪除當前的css類和使用jquery添加新的類
我的CSS包含3次不同的類別:在我要添加只有一個等級符合條件的jQuery變量my_color
設置爲div的ID #box
時間
.red { background:red }
.blue { background:blue }
.green { background:green }
。 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>
其刪除不需要的類看起來像前一個回答http://stackoverflow.com/a/14685691/1957479 –