我正在学习 jquery,并想学习如何将此服务器端代码转换为 jquery 函数。任何帮助表示赞赏。
Protected Sub ChartstoDisplay_SelectedIndexChanged(sender As Object, e As System.EventArgs) Handles ChartstoDisplay.SelectedIndexChanged
For i As Integer = 0 To ChartstoDisplay.Items.Count - 1
If ChartstoDisplay.Items(i).Selected Then
ChartstoDisplay.Items(i).Attributes.Add("style", "color:DarkGreen;")
Else
ChartstoDisplay.Items(i).Attributes.Add("style", """")
End If
Next
End Sub
我试过这个无济于事。
function checkboxSelection() {
foreach (ListItem li in ChartstoDisplay.Items)
{
li.Attributes["class"] = "checkBoxListItems";
}
$('#ChartstoDisplayAll').click(function() {
$(".checkBoxListItems").each(
function(intIndex) {
if ($(this).find('input').attr('checked') === true)
$(this).attr.add("style","color:DarkGreen;");
});
});
}