asp.net使用jQuery获取RadioButtonList成员选中内容和值示例
asp.net使用jQuery获取RadioButtonList成员选中内容和值示例
发布时间:2016-12-29 来源:查字典编辑
摘要:复制代码代码如下:$(document).ready(function(){$("#input[type=radio]").bind("ch...

复制代码 代码如下:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="Web.Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head runat="server">

<title></title>

<script src="jquery-1.8.2.min.js" type="text/javascript"></script>

<link href="Base.css" rel="stylesheet" type="text/css" />

<style type="text/css">

</style>

<script type="text/javascript">

$(document).ready(function () {

$("#<%=rblHobbies.ClientID%> input[type=radio]").bind("change", function () {

if ($(this).val() != "") {

$("#message").text("Text:" + $(this).next().text() + " Value:"+$(this).val());

}

});

});

</script>

</head>

<body>

<form id="form1" runat="server">

<div>

<fieldset>

<p>

请选择爱好</p>

<asp:RadioButtonList ID="rblHobbies" runat="server" >

<asp:ListItem Value="1">音乐</asp:ListItem>

<asp:ListItem Value="2">篮球</asp:ListItem>

<asp:ListItem Value="3">美剧</asp:ListItem>

<asp:ListItem Value="4">电影</asp:ListItem>

</asp:RadioButtonList >

</fieldset>

<br />

<div id="message"></div>

</div>

</form>

</body>

</html>

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新asp.net教程学习
热门asp.net教程学习
编程开发子分类