所以我有一個單選按鈕,文字為“是”和“否”,如果選擇其中任何一個,我希望字體顏色會改變。
以下是html程式碼:
<asp:RadioButtonList ID="RadioButtonList1" runat="server" RepeatDirection="Horizontal"> <asp:ListItem Text="否" Value="False" /> <asp:ListItem Text="是" Value="True" /> </asp:RadioButtonList>
我在css中有以下程式碼,可以改變所選單選按鈕的標籤:
input[type="radio"]:checked label { 字型粗細:加粗!重要; }
您可以使用區塊括號來定位任何屬性,包括「Text」屬性: