如何使用单选按钮更改文本大小 - JQuery Mobile

时间:2014-03-19 23:38:51

标签: javascript android jquery html css

我正在尝试更新列表视图中每个项目的标题和段落信息的文本大小。这是我到目前为止的JQuery:

$('#rc1').prop('checked', 'true', function(){
    $(".feedContainer ul li h3").css('font-size', '1em');
    $(".feedContainer ul li p").css('font-size', '.9em');

});

$('#rc2').prop('checked', 'true', function(){
    $(".feedContainer ul li h3").css('font-size', '1.5em');
    $(".feedContainer ul li p").css('font-size', '1.4em');
    $('#header-title').html('test');

});

$('#rc3').prop('checked', 'true', function(){
    $(".feedContainer ul li h3").css('font-size', '2em');
    $(".feedContainer ul li p").css('font-size', '1.9em');

});

这是html:

 <fieldset data-role="controlgroup" data-type="horizontal" data-mini="true">
        <legend>Text Size</legend>
        <input type="radio" name="rc1" id="rc1" value="off" >
        <label for="rc1">A</label>
        <input type="radio" name="rc2" id="rc2" value="off">
        <label for="rc2">A</label>
        <input type="radio" name="rc3" id="rc3" value="off">
        <label for="rc3">A</label>
 </fieldset>

和字母大小的CSS&#34; A&#34;在单选按钮组中(也不起作用):

#rc1 {
    font-size: 12px;
}

#rc2 {
    font-size: 16px;
}

#rc3 {
    font-size: 24px;
}

有人可以帮我一把吗?谢谢!

编辑:为feedContainer添加了CSS:

.feedContainer ul li h3 {
    color: #333;
    font-size: 1em;
    padding: 0;
    font-weight: bold;
    margin: 0;
    font-family: 'Oxygen', sans-serif;
    white-space:normal;
}
.feedContainer ul li p {
    font-size: .9em;
    color: #666;
    margin: 0;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
    white-space:normal;
}

1 个答案:

答案 0 :(得分:0)

jquery .class选择器选择classname所在的所有元素.class尝试这样看看var是什么

 var color = $("div").css( "background-color" );

是.feedContainer元素吗?