当前位置: 代码迷 >> ASP.NET >> 如何用js获取 radiobuttonlist 所选择的值
  详细解决方案

如何用js获取 radiobuttonlist 所选择的值

热度:859   发布时间:2013-02-26 00:00:00.0
怎么用js获取 radiobuttonlist 所选择的值?
同上

------解决方案--------------------------------------------------------
http://community.csdn.net/Expert/topic/5215/5215731.xml?temp=.6672327
------解决方案--------------------------------------------------------
http://community.csdn.net/Expert/topic/5097/5097430.xml?temp=.1916315
------解决方案--------------------------------------------------------
有很多啊,基于窗体的,window的,证书的.
一般做网站用窗体的,安全要高的用证书的,企业应用可以用Windows的.
可以在web.config文件里面改.然后做相应的处理.
------解决方案--------------------------------------------------------
ms-help://MS.NETFrameworkSDKv1.1.CHS/cpguidenf/html/cpconaspnetauthentication.htm

这个是SDK文档里面的地址.要在SDK里面才能打的开.自己去看看.
------解决方案--------------------------------------------------------
对不起,发错了,呵呵.
------解决方案--------------------------------------------------------
function c()
{
var aa=document.getElementsByName( "RadioButtonList1 ");
for(var i=1;i <aa.length;i++)
{
if(aa[i].checked)
alert(aa[i].value);
}
}

且 在RadioButtonList加上事件onclick= "c(); "


------------------------
http://fenglin.xland.cn
------------------------

------解决方案--------------------------------------------------------
帮LZ顶
------解决方案--------------------------------------------------------
添加一个隐藏字段 <input type= "hidden " runat= "server " id= "hdnRdoValue ">
function getRdoValue(rdo)
{
document.getElementById( 'hdnRdoValue ').value = rdo.value;
}
RadioButtonList添加onclick= "javascript:getRdoValue(this); "

后台代码获取这个隐藏字段的值 即可



------解决方案--------------------------------------------------------