在Jquery Mobile中设置控制组按钮的样式

时间:2011-09-15 23:29:11

标签: jquery-mobile

我有一个控制组,将3个单选按钮分组看起来像按钮,我想要做的是点击每个按钮上的按钮。单击“红色”将更改按钮的颜色为“红色”

代码在

之下
<div data-role="fieldcontain">
<fieldset data-role="controlgroup" data-type="horizontal">
    <input type="radio" name="rd1" id="rd1" value="R" />
    <label for="rd1">Red</label>
    <input type="radio" name="rd2" id="rd2" value="G" />
    <label for="rd2">Green</label>
    <input type="radio" name="rd3" id="rd3" value="B" />
    <label for="rd3">Blue</label>
</fieldset>

有人可以帮我解决这个问题。

1 个答案:

答案 0 :(得分:2)

直播示例:

JS

$('input[name=rdColor]').change(function() {
    $(this).next().addClass($(this).val());
});

HTML

<div data-role="page" id="home"> 
    <div data-role="content"> 
        <div data-role="fieldcontain">
            <fieldset data-role="controlgroup" data-type="horizontal">
                <input type="radio" name="rdColor" id="rd1" value="R" />
                <label for="rd1">Red</label>
                <input type="radio" name="rdColor" id="rd2" value="G" />
                <label for="rd2">Green</label>
                <input type="radio" name="rdColor" id="rd3" value="B" />
                <label for="rd3">Blue</label>
            </fieldset>
        </div>
    </div>
</div>

CSS

.R {
    background:red;  
}

.B {
    background:blue;
}

.G {
    background:green;
}