我正在用jquery mobile構建移動應用程序。但是我的分段控制存在問題。像你可以看到here。CSS覆蓋和活動按鈕
現在我想實現的是,當我選擇一個按鈕時,此按鈕的背景將獲得不同的背景顏色。
在這裏,你可以找到我的HTML
<div data-role="fieldcontain">
<fieldset data-role="controlgroup" data-type="horizontal" >
<input type="radio" name="radio-view" data-icon="segment-titlestyle-segonly" id="segment1" value="choice1" checked="checked" />
<label for="segment1" id="controls"><span class="ui-btn-text-controls">Iedereen</span></label>
<input type="radio" name="radio-view" data-icon="segment-titlestyle-segonly" id="segment2" value="choice2" />
<label for="segment2" id="controls"><span class="ui-btn-text-controls">Team</span></label>
<input type="radio" name="radio-view" data-icon="segment-titlestyle-segonly" id="segment3" value="choice3" />
<label for="segment3" id="controls"><span class="ui-btn-text-controls">Favorieten</span></label>
</fieldset>
就像你可以看到我使用的背景ID控制。
#controls{
background-color: #C0C0C0 !important;
border-color: black !important;
}
#controls:overlay{
background-color: #C0C0C0 !important;
}
但它不起作用。有人可以幫助我嗎?
親切的問候。
這是行不通的。但我認爲這是因爲我使用jquery移動框架 – Steaphann 2012-03-30 06:23:42