how to access textbox and checkbox values inside Gridview using JQuery
how to access tex开发者_高级运维tbox values inside Gridview using JQuery
$(".gridViewCss").find("input[@type=checkbox]").each(function(){
if(this.checked){
alert(Checkbox Checked);
}
else
{
alert(Checkbox not Checked);
}
});
Here gridViewCss is CSS class assigned to grid.
精彩评论