我有一项调查,30多个是/否问题(radiobutton);如果选择“否”,则显示文本框以给出原因,如果选择“否”,则需要此文本框。我不能一个接一个地做。如何使用通配符和循环来执行此操作。
<tr>
<td>1</td>
<td width="600px">question 1?</td>
<td width="65px">
<asp:RadioButton ID="rdM1Y" runat="server" Text="Yes" GroupName="rdM1" />
<asp:RadioButton ID="rdM1N" runat="server" Text="No" GroupName="rdM1" />
</td>
<td><asp:TextBox ID="txtCM1" runat="server" /></td>
</tr>
<tr>
<td>2</td>
<td width="600px">question 2?</td>
<td width="65px">
<asp:RadioButton ID="rdM2Y" runat="server" Text="Yes" GroupName="rdM2" />
<asp:RadioButton ID="rdM2N" runat="server" Text="No" GroupName="rdM2" />
</td>
<td><asp:TextBox ID="txtCM2" runat="server" /></td>
</tr>
如果他们选择不
,我需要验证这些文本框是否需要答案 0 :(得分:0)
好的,所以:
包含jQuery(让它变得更容易):
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>
为所有“NO”单选按钮添加radNo
类:
<asp:RadioButton class="radNo" ID="rdM2N" runat="server" Text="No" GroupName="rdM2" />
为所有文本框添加txtNo
类:
<asp:TextBox class="txtNo" ID="txtCM2" runat="server" />
添加脚本:
<script type="text/javascript">
$(function(){
$('.radNo').click(function(){
var c = $(this).is(':checked');
$(this).parents('tr').find('txtNo').toggle(c);
if (c) {
$(this).parents('tr').find('txtNo').focus();
}
});
// validate that there's text if select NO
$('.txtNo').bind('blur', function(){
if ($(this).val().length < 1) {
$(this).focus();
alert('please provide a reason');
}
});
});
</script>
应该这样做,希望我理解得很好,这很有帮助。
答案 1 :(得分:0)
生成的HTML - 请注意textarea
ID等于radio
按钮名称
<table>
<tr>
<td>1</td>
<td width="600px">question 1?</td>
<td width="65px">
<label><input type="radio" name="rdM1" /> Yes</label>
<label><input type="radio" name="rdM1" class="give_reason" /> No</label>
</td>
<td><textarea id="rdM1" name="rdM1-reason"></textarea></td>
</tr>
</table>
CSS
textarea {display: none;}
的Javascript
$(document).on('click', 'input:radio', function(){
el = $('#' + this.name);
($(this).hasClass('give_reason'))? el.show() : el.hide();
});
答案 2 :(得分:0)
首先给no-radiobuttons一个普通的类,例如说它是“noRadio”。然后,您可以使用此类收听所有单选按钮的单击事件。在事件处理函数中,您可以找到相应的文本框并显示它。我的示例代码如下:
$(".noRadio").click(function(e) {
// get id of the clicked radio button
var id = $(e.target).attr("id");
// remove "rdM" and "N" from id and get pure question number
id = id.replace("rdM", "").replace("N", "");
// select the corresponding text box by its id, e.g. "#txtCM2" if "#rdM2N" selected
$("#txtCM" + id).show();
});
我在我的项目中尝试了这种方法,但它确实有效。
答案 3 :(得分:0)
$(document).on('click', 'input:radio', function(){
$('table').each(function(){
if($('input[type= radio]:checked').val() == no))
{
$('textbox').show();
}
});
});