gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-28 10:59:09 25 4
gpt4 key购买 nike

我正在尝试更新 ListView 中每个元素的标题和段落信息的文本大小。这是我目前拥有的 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>

以及单选按钮组中字母“A”大小的 CSS(也不起作用):

#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;
}

最佳答案

jquery .class 选择器选择类名为 .class 的所有元素,像这样尝试看看 var 是什么

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

.feedContainer 是一个元素吗?

关于javascript - 如何使用单选按钮更改文本大小 - JQuery Mobile,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22520515/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com