我有一个asp.net RadioButtonList控件,我希望使用Jquery基于RadioButtonList选择更改隐藏或显示这些。请指导我在
中使用相同代码时无法执行此操作的原因我的aspx
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js"
type = "text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"
type = "text/javascript"></script>
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css"
rel = "Stylesheet" type="text/css" />
<script type="text/javascript">
$(document).ready(function () {
$('#rdbrawmtrl input').click(function () {
var value = $('#rdbrawmtrl input:checked').val();
if (value == "Cotton") {
$("#abc").show();
$("#Panel6").hide();
}
if (value == "Wool") {
$("#Panel6").show();
$("#abc").hide();
}
});
});
</script>
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<asp:RadioButtonList ID="rdbrawmtrl" runat="server" Style="margin: 0 4px 8px 0;">
<asp:ListItem>Cotton</asp:ListItem>
<asp:ListItem>Wool</asp:ListItem>
</asp:RadioButtonList>
<div id="abc" runat="server" style="display:none;">
//Some more controls
</div>
<div id="Panel6" runat="server" style="display:none;">
//some more controls
</div>
</asp:Content>
我甚至试图显示jquery变量&#34; value&#34;但它没有显示结果。
<script type="text/javascript">
$(document).ready(function () {
$('#rdbrawmtrl input').click(function () {
var value = $('#rdbrawmtrl input:checked').val();
alert(value);
});
});
</script>
请指导我在哪里做错了。
答案 0 :(得分:1)
你无法直接在javascript中通过id获取HTML元素。 ASP.net是服务器端语言,Javascript是客户端,所以你 需要获得CLient ID。试试这个..
$('#<%=rdbrawmtrl.ClientID%>').click(function(){
// your code here ....
});
答案 1 :(得分:1)
我假设 Name: [test222]
Host: [DS01ATA]
Port: [ 22 ]
将您的单选按钮呈现如下。
ASP
&#13;
$("input[name='rdbrawmtrl']:radio").change(function() {
var val = $(this).val();
alert ( val );
});
&#13;
修改:根据您的评论,尝试以下操作。
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<tr>
<td>
<input name="rdbrawmtrl" id="rdbrawmtrl_0" type="radio" value="Cotton" />
<label for="rdbrawmtrl_0">Cotton</label>
</td>
</tr>
<tr>
<td>
<input name="rdbrawmtrl" id="rdbrawmtrl_1" type="radio" value="Wool" />
<label for="rdbrawmtrl_1">Wool</label>
</td>
</tr>
答案 2 :(得分:0)
您无法检索值,因为您的ASP.NET RadioButton在浏览器中呈现如下: -
<tr>
<td>
<input name="rdbrawmtrl" id="rdbrawmtrl_0" type="radio" value="Cotton">
<label for="rdbrawmtrl_0">Cotton</label>
</td>
</tr>
<tr>
<td>
<input name="rdbrawmtrl" id="rdbrawmtrl_1" type="radio" value="Wool">
<label for="rdbrawmtrl_1">Wool</label>
</td>
</tr>
如您所见,将为每个单选按钮动态生成Id。您应该在name
属性上编写一个选择器,如下所示: -
$('input[name="rdbrawmtrl"]').click(function () {
var value = $(this).val();
alert(value);
});
<强>更新强>
拥有母版页不仅会动态更改Id
,还会更改name
属性。您可以像这样在RadioButtonList中添加一个类: -
<asp:RadioButtonList ID="rdbrawmtrl" runat="server" Style="margin: 0 4px 8px 0;"
CssClass="clsrdbrawmtrl">
然后你可以找到它里面的单选按钮: -
$('input[type="radio"]',$('.clsrdbrawmtrl')).click(function () {
alert($(this).val());
});