我一直依靠以下技術一段時間。但我並沒有經常遇到它,而且我也無法找到有關它的信息。也許它有一個我不知道的專有名稱?我把它稱爲鏈接,因爲它看起來確實如此:將CSS類名稱鏈接在一起。但是,大多數情況下,在鏈接上進行搜索可以獲得有關jQuery的信息。以這種方式鏈接CSS類是否有效?
.button {
background-color:#ccc;
}
/* This is what I'm unsure of, notice there is no space between .button and .on */
/* If there were, .on apply to the child of .button, but that's not my intention */
.button.on {
background-color:#fff;
}
它允許我使用單個類名(on)來區分多個元素的狀態。
<a class="button"></a>
<a class="button on"></a>
<a class="button-two"></a>
<a class="button-two on"></a>
<!-- etc... -->
這是非常方便的用動態網頁,當你需要切換使用單一類名的幾個元素的on
類。
但它有效嗎?
對於不錯的鏈接+1。 – JonH