我是javascript和jQuery的新手。 在我的HTML有2个单选按钮和一个div。如果我检查第一个单选按钮,我想显示div,否则我希望它被隐藏
所以:如果选中单选按钮#watch-me - > div#show-me是可见的。 如果未选中单选按钮#watch-me(未选中或未选中第二个) - > div#show-me是隐藏的。
这是我到目前为止所拥有的。
<form id='form-id'>
<input id='watch-me' name='test' type='radio' /> Show Div<br />
<input name='test' type='radio' /><br />
<input name='test' type='radio' />
</form>
<div id='show-me' style='display:none'>Hello</div>
和JS:
$(document).ready(function () {
$("#watch-me").click(function() {
$("#show-me:hidden").show('slow');
});
$("#watch-me").click(function(){
if($('watch-me').prop('checked')===false) {
$('#show-me').hide();}
});
});
我应该如何更改脚本以实现这一目标?
答案 0 :(得分:42)
我会像这样处理它:
$(document).ready(function() {
$('input[type="radio"]').click(function() {
if($(this).attr('id') == 'watch-me') {
$('#show-me').show();
}
else {
$('#show-me').hide();
}
});
});
答案 1 :(得分:8)
输入元素应具有值属性。添加它们并使用它:
$("input[name='test']").click(function () {
$('#show-me').css('display', ($(this).val() === 'a') ? 'block':'none');
});
<强> jsFiddle example 强>
答案 2 :(得分:5)
$('input[name=test]').click(function () {
if (this.id == "watch-me") {
$("#show-me").show('slow');
} else {
$("#show-me").hide('slow');
}
});
答案 3 :(得分:0)
$('input[type="radio"]').change(function(){
if($("input[name='group']:checked")){
$(div).show();
}
});
答案 4 :(得分:0)
var switchData = $('#show-me');
switchData.hide();
$('input[type="radio"]').change(function(){ var inputData = $(this).attr("value");if(inputData == 'b') { switchData.show();}else{switchData.hide();}});