jquery获取GridView中RadioButton选中的数据

function selectSingleRadio(rbtn) {

var radio = document.getElementsByTagName("radio");

var arrAll = document.all;

for (i = 0; i < arrAll.length; i++) {

if (arrAll[i].type == "radio") {

arrAll[i].checked = false;

}

}

rbtn.checked = true;

//document.getElementById("ctl00_ContentPlaceHolder3_HFNumber").value = rbtn.nextSibling.innerHTML;

// document.getElementById("ctl00_ContentPlaceHolder3_btnUpdate").click();

document.getElementById("<% =HFNumber.ClientID%>").value = rbtn.nextSibling.innerHTML;                                   document.getElementById("<% =Label1.ClientID%>").innerText = rbtn.nextSibling.innerHTML;

}

<asp:RadioButton ID="rdb1" name="area" runat="server"   Text=‘<%# Eval("Goodsid")%>‘
                                        GroupName="rbAdress" onclick="selectSingleRadio(this);" />

<asp:Label ID="Label1" runat="server" Text=" "></asp:Label>用来显示的 前台显示

<asp:HiddenField  ID="HFNumber" runat="server"/>用来传值的

string no = HFNumber.Value;后台接受;

时间: 2024-10-29 19:10:52

jquery获取GridView中RadioButton选中的数据的相关文章

点击GridView中TextBox弹出输入对话层,输入内容反传回先前点击的TextBox中(Jquery获取GridView中TextBox的ID)

项目中,由于用户反映说:GridView表中的输入框太小,不方便输入,特别是在输入内容多的时候.问能不能点击GridView中输入框的时候能弹出一个大的内容输入对话框. 介于用户的要求,我就开始修改. 先想到的就是我用Jquery在GridView中TextBox上添加一个focus焦点捕捉事件,当点击时触犯弹出内容输入框. 然后就是当输入完毕的操作了,我又使用内容输入框(其实也是一个TextBox)的焦点失去事件(blur),在该事件中先把值反馈回先前点击的GridView中的那个TextBo

jQuery获取循环中的选中单选按钮radio的值

1.<input type="radio" name="testradio" value="jquery获取radio的值" />jquery获取radio的值2.<input type="radio" name="testradio" value="jquery获取checkbox的值" />jquery获取checkbox的值3.<input type=

Jquery获取html中select,radiobutton选中的值写法

1.Html代码: <select name="" class="qixian" id="tbCheckCycleUnit"> <option value="1">天</option> <option value="2">月</option> <option value="3">年</option> &l

使用jQuery获取GridView的数据行的数量

一个同事在群里抛出了上述的问题,另一个同事给出了答案,试了一下,还不错.贴出代码和效果图: 1 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <head runat="server"> 3 <title></title> 4 <script src="Scripts/jquery-1.4.1.min.js" type="text/java

Jquery获取列表中的值和input单选、多选框控制选中与取消

一.Jquery获取列表中的值 二.input多选框控制选中 1 $('#clearbtn').click(function(){ 2 var boxes = $("input[type='checkbox']"); 3 for(i=0;i<boxes.length;i++){ 4 boxes[i].checked = false; 5 } 6 });

获取GridView中RowCommand的当前索引行

原文:http://blog.csdn.net/sabty/article/details/4816160 获取GridView中RowCommand的当前索引行 前台添加一模版列,里面添加一个LinkButton 前台 (如果在后台代码中用e.CommandArgument取值的话前台代码就必须在按钮中设置CommandArgument的值,值为绑定的数据库字段 <asp:TemplateField HeaderText="操作"> <ItemTemplate>

关于Jquery获取Table中td内的内容

$(this).children().eq(1).text()获取的是显示的值$(this).children().eq(1).html()获取的是<td></td>之间的所有内容$('.trSelected',grid).find("td").eq(7).text();获取的是选中的某行的内容 遍历表<table id="gird"..... $("#grid tr").each(function() {     

jQuery获取一般处理程序(ashx)的JSON数据

昨天有在开发的软件生产线生产流程,RFID扫描IC卡的数据,当中有用到jQuery获取一般处理程序(ashx)的JSON数据.今有把它写成一个小例子,望需要的网友能参考. 在网站中,创建一个一般应用程序ashx: 命名空间: using System.Data; using System.Collections.Generic; using System.Web.Script.Serialization; 输出的内容类型: context.Response.ContentType = "appl

js,jquery获取下拉框选中的option

js获取select选中的值: var sel=document.getElementById("select1"); var index = sel.selectedIndex; // 选中索引 albumid= sel.options[index].value;//要的值 jQuery获取下拉框选中的option: $("#s option:selected").val();