我有一个用户可以保存并返回编辑的表单。我对表单上有问题,根据用户对上一个问题的回答,将div(class = "details
)与其他问题进行切换。这些问题类型有多种。
我希望详细信息div中的子问题的答案能够清除用户是否选择“否”(当子问题切换为隐藏时)。我如何将其实现到现有代码中?
示例:http://jsfiddle.net/XVtB8/1
jQuery的:
$('.toggle').on('change',function(){
var showOrHide = false;
$(this).siblings('input[type=radio]').andSelf().each(function() {
if ($(this).val() == 1 && $(this).prop("checked")) showOrHide = true;
})
$(this).parent().next('#details').toggle(showOrHide);
}).change()
HTML:
<div>
<label>Select #1:</label>
<input type="radio" name="radio1" class="toggle" value="0">No
<input type="radio" name="radio1" class="toggle" value="1" checked="checked">Yes
</div>
<div id="details">
<input type="text" value="123"><br>
<input type="text" value="456">
</div>
<br>
<div>
<label>Select #2:</label>
<input type="radio" name="radio2" class="toggle" value="0">No
<input type="radio" name="radio2" class="toggle" value="1" checked="checked">Yes
</div>
<div id="details">
<input type="text" value="789"><br>
<input type="text" value="098">
</div>
<br>
<div>
<label>Select #3:</label>
<input type="radio" name="radio3" class="toggle" value="0" checked="checked">No
<input type="radio" name="radio3" class="toggle" value="1">Yes
</div>
<div id="details">
<input type="text"><br>
<input type="text">
</div>
<br>
<div>
<label>Select #3:</label>
<input type="radio" name="radio4" class="toggle" value="0">No
<input type="radio" name="radio4" class="toggle" value="1">Yes
</div>
<div id="details">
<input type="text"><br>
<input type="text">
</div>
答案 0 :(得分:0)
你可以试试 -
$('.toggle').on('change',function(){
var showOrHide = false;
var ClearDivs = false;
$(this).siblings('input[type=radio]').andSelf().each(function() {
if ($(this).val() == 1 && $(this).prop("checked")) showOrHide = true;
if ($(this).val() == 0 && $(this).prop("checked")) ClearDivs = true;
})
$(this).parent().next('#details').toggle(showOrHide);
if (ClearDivs) $(this).parent().next('#details').find('input[type=text]').val('');
}).change()
答案 1 :(得分:0)
您可以尝试这样的事情:
$('.toggle').on('change',function(){
var showOrHide = false;
$(this).siblings('input[type=radio]').andSelf().each(function() {
if ($(this).val() == 1 && $(this).prop("checked")) showOrHide = true;
})
$(this).parent().next('#details').toggle(showOrHide);
if (showOrHide==false){
$(this).parent().next('#details').find('input[type=text]').val('');
$(this).parent().next('#details').find('input:checkbox').removeAttr('checked');
// other fields type to clear
} }).change()
这里是未更新的小提琴:http://jsfiddle.net/XVtB8/2/
答案 2 :(得分:0)
我认为你应该改进表单的标记,以便它有意义,然后在jQuery中进行。
请参阅 Example
<fieldset>
对表单元素进行分组,使用<legend>
为其命名。