C#:
for
(
int
i = 0; i <
this
.CheckBoxList1.Items.Count; i++)
{
this
.CheckBoxList1.Items[i].Attributes.Add(
"onclick"
,
"Test(this);"
);
}
js:
function
Test(obj)
{
if
(obj.checked)
{
var
objid=obj.id;
var
inps = document.getElementsByTagName(
'label'
);
for
(
var
i=0;i<inps.length;i++)
{
if
(inps[i].getAttributeNode(
'for'
).value==objid)
{
alert(inps[i].innerText);
break
;
}
}
}
}