• select radio 选中一个的值的判断


    代码
    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="TestDemo._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 language="javascript" type="text/javascript" src="js/jquery-1.4.2.min.js"></script>
        
    <script language="javascript" type="text/javascript">
            
    function OnSel() {
                alert($(
    "select[id=Select1] :selected").val());
            }
            
            
    function OnSelRadio() {           
                alert($(
    "input[name=rad]:radio:checked").val());
            }
        
    </script>
    </head>
    <body>
        
    <form id="form1" runat="server">
        
    <div>
            
    <select id="Select1">
                
    <option value="1">第一行</option>
                
    <option value="2">第二行</option>
                
    <option value="3">第三行</option>
            
    </select>
            
            
    <br />
            
            
    <input id="Button1" type="button" value="选择" onclick="OnSel();" />
            
            
    <hr />
            
            
    <input id="Radio1" type="radio" name="rad" value="1" />第一
            
    <input id="Radio2" type="radio" name="rad" value="2" />第二
            
    <input id="Radio3" type="radio" name="rad" value="3" />第叁
            
    <input id="Radio4" type="radio" name="rad" value="4" />第四
            
    <input id="Radio5" type="radio" name="rad" value="5" />第五
            
    <br />
            
    <input id="Button2" type="button" value="button" onclick="OnSelRadio();" />
        
    </div>
        
    </form>
    </body>
    </html>

    走向地狱的途中,不小心走了程序员这条路,路上一个个黑心的老板,和暗无天日的加班,我才发现,通往地狱的路径中,我们这行是最短的。

  • 相关阅读:
    前端路上的设计道
    缓存实现和处理(微信小程序)
    常见的js中的DOM操作
    在前端页面开发中所遇到的问题总结
    webstrom快捷键设置
    c# html 导出word
    c# html 导出excel
    C#通过gridview导出excel
    关于 应用程序池 'DefaultAppPool' 提供服务的进程意外终止-的一种解决办法
    GridView的RowCommand事件中获取每行控件的值
  • 原文地址:https://www.cnblogs.com/zlfucku/p/1733410.html
Copyright © 2020-2023  润新知