我有三个单选按钮,如b c,我希望如果我点击b,下面会看到另外三个单选按钮。我已经为单选按钮编写了代码,但我不知道要隐藏并显示下面的单选按钮。我已经尝试过这种方式,但无法完成它
$(document).on('change','#quarterly',function(){
$("input:radio[name='FIRST'],input:radio[name='SECOND']").hide();
});
每季度是我想要更改的按钮的ID 请帮忙!!!!! 这是html
期 每年 季刊 每月一次 期
首先
第二个
第三
答案 0 :(得分:3)
我厌倦了这个并且有效!
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery Show Hide Elements Using Radio Buttons</title>
<style type="text/css">
.box{
padding: 20px;
display: none;
margin-top: 20px;
border: 1px solid #000;
}
.red{ background: #ff0000; }
.green{ background: #00ff00; }
.blue{ background: #0000ff; }
</style>
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#buttonsClick").hide();
$('input[type="radio"]').click(function(){
if($(this).attr("value")=="red"){
$("#buttonsClick").show();
}
if($(this).attr("value")=="green"){
$(".box").not(".green").hide();
$(".green").show();
}
if($(this).attr("value")=="blue"){
$(".box").not(".blue").hide();
$(".blue").show();
}
});
});
</script>
</head>
<body>
<div>
<label><input type="radio" name="colorRadio" value="red"> red</label>
<label><input type="radio" name="colorRadio" value="green"> green</label>
<label><input type="radio" name="colorRadio" value="blue"> blue</label>
</div>
<div class="red box">You have selected <strong>red radio button</strong> so i am here</div>
<div class="green box">You have selected <strong>green radio button</strong> so i am here</div>
<div class="blue box">You have selected <strong>blue radio button</strong> so i am here</div>
<div id="buttonsClick">
<input type="radio" name="colorRadio" value="red"> red
<input type="radio" name="colorRadio" value="green"> green
<input type="radio" name="colorRadio" value="blue"> blue
</div>
</body>
</html>
在加载文档时,隐藏包含单选按钮的div,如示例所示,并使用onshlick函数使用.show()属性并完成工作!
答案 1 :(得分:2)
需要注意的一些事项:
:radio
css选择器。radio
按钮时,我们不使用ID(但名称),因为我们将单选按钮分组的方式是他们的名字。$(this).val()
)。这是一个有效的例子:
$(document).on('change','input[type=radio][name=opt]',function() {
if ($(this).val() == 'opt2') {
$("input[type='radio'][name='FIRST'],input[type='radio'][name='SECOND']").show();
} else {
$("input[type='radio'][name='FIRST'],input[type='radio'][name='SECOND']").hide();
}
});
input[name='FIRST'], input[name='SECOND'] {
display: none;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<input name="opt" type="radio" value="opt1" checked="checked" /> opt1 <br />
<input name="opt" type="radio" value="opt2" /> opt2 <br />
<input name="FIRST" type="radio" /> <br />
<input name="SECOND" type="radio" /> <br />
答案 2 :(得分:0)
使用此代码
CREATE TABLE [dbo].[countrylist]
(
[countrylistid] [INT] IDENTITY(1, 1) NOT NULL,
[kodepos_postcode] [VARCHAR](50) NULL,
[kelurahan_village] [VARCHAR](50) NULL,
[kecamatan_district] [VARCHAR](50) NULL,
[jenis_type] [VARCHAR](50) NULL,
[kab_city] [VARCHAR](50) NULL,
[propinsi_state] [VARCHAR](50) NULL,
CONSTRAINT [PK_countryList] PRIMARY KEY CLUSTERED ( [countrylistid] ASC )
WITH (pad_index = OFF, statistics_norecompute = OFF, ignore_dup_key = OFF,
allow_row_locks = on, allow_page_locks = on) ON [PRIMARY]
)
ON [PRIMARY]
OR
$(document).on('change','#quarterly',function(){
$("#FIRST").parent(".row").hide();
$("#SECOND").parent(".row").hide();
$("#THIRD").parent(".row").hide();
});
因为在您的情况下$(document).on('change','#quarterly',function(){
$("#FIRST").closest(".row").hide();
$("#SECOND").closest(".row").hide();
$("#THIRD").closest(".row").hide();
});
是ID而不是名称。