Automatically change the background color of the selected project in CheckBoxList

Source: Internet
Author: User
The effect is shown in the following figure:
Implementation principle:
Bind a front-end onclick event to the CheckBoxList to change the color of the selected item. Because the items in the CheckBoxList will become the following labels at the front end:
<Tr>
<Td>
<Input id = "cbl_ I" type = "checkbox" name = "cbl: I"/> (I is the serial number of item)
<Label for = "cbl_ I"> ItemText </label> (ItemText is the text of item)
</Td>
</Tr>
If you only specify a style for document. getElementById (cbl_ I), only the CheckBox will have a background color, and the subsequent text will not. In order to make the entire item have a background color, you need to set its upper-level <td> label style.
Implementation code:
Front-end:
<Style type = "text/css">
. ItemBgColor {BACKGROUND-COLOR: # ccccff}
</Style>
<Script language = "javascript">
Function ChangeSelectedItemColor (checkBoxListId, numOfItems)
{
// Get the checkboxlist object.
Var objCtrl = document. getElementById (checkBoxListId );
If (objCtrl = null)
      {
Return;
      }
     
For (I = 0; I <numOfItems; I ++)
      {
Var name = checkBoxListId + ':' + I;
Var objItem = document. getElementById (checkBoxListId + '_' + I );
Var isCheck = objItem. checked;

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.