Asp.Net 控件radio 的简单使用_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > Asp.Net 控件radio 的简单使用

Asp.Net 控件radio 的简单使用

 2014/8/6 19:29:51  Vennet  程序员俱乐部  我要评论(0)
  • 摘要:js:<scripttype="text/javascript">functionok(){document.getElementById("txtPassword").disabled=false;}functionno(){document.getElementById("txtPassword").disabled=true;}</script>添加radio控件:<label><
  • 标签:.net ASP.NET 使用 net RAD 控件

js:

    <script type="text/javascript">
        function ok() {
            document.getElementById("txtPassword").disabled = false;
        }
        function no() {
            document.getElementById("txtPassword").disabled = true;
        }      
    </script>

添加radio控件:

<label>       
 <input type="radio" name="group" onclick="ok()"/></label>
<label>
<input type="radio" name="group"  onclick="no()" /></label>

添加textbox控件:

<input type="text" id="txtOldPassword" disabled="true"/>

以上,实现选择不同按钮,textbox控件显示可编辑和不可编辑两种状态

 

发表评论
用户名: 匿名