在单选按钮状态的更改时更改标题。

9 浏览
0 Comments

在单选按钮状态的更改时更改标题。

当选中单选框按钮时,如何更改标题和标签文本?我的代码看起来就像这样,但当我按下按钮时,什么也不发生。虽然我认为这段代码是正确的:

#1.Question 1

admin 更改状态以发布 2023年5月22日
0
0 Comments

尝试这样做:

$(':radio.radio').each(function(){
$(this).change(function(){
if($(this).attr('id') == 'radio2'){
$(this).siblings('label').text('Answer 1 selected');
$('h1').text('Answer 1 is selected');
} else if ($(this).attr('id') == 'radio3'){
$(this).siblings('label').text('Answer 2 selected');
$('h1').text('Answer 2 is selected');
} else if ($(this).attr('id') == 'radio4') {
$(this).siblings('label').text('Answer 3 selected');
$('h1').text('Answer 3 is selected');
}
});
});



#1.Question 1

0
0 Comments

请确保指向正确的jQuery:https://code.jquery.com/jquery-1.12.1.min.js (甚至已经有1.12.3可用了)。

将您的脚本标签插入到文档头部