zoukankan      html  css  js  c++  java
  • ASP.NET jQuery 随笔 显示RadioButtonList成员选中的内容和值

    通过jQuery来获取RadioButtonList成员内容。

    <%@ 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 style="margin: 100px auto;  400px; height: 200px;">
            <fieldset style=" 400px; height: 150px">
                <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" style="color:blue;"></div>
        </div>
        </form>
    </body>
    </html>
  • 相关阅读:
    linux常用命令(一)
    并发与高并发(十九) 高并发の消息队列思路
    鉴别web服务器的工具类
    并发与高并发(十八) 高并发之缓存思路
    记一次多线程下使用while出现的问题
    并发与高并发(十七)高并发之扩容思路
    并发与高并发(十六)多线程并发拓展
    并发与高并发(十五)线程池
    并发与高并发(十四)J.U.C组件拓展
    基于springboot实现Java阿里短信发送
  • 原文地址:https://www.cnblogs.com/jlcoder/p/3471183.html
Copyright © 2011-2022 走看看