Use DOM1 to achieve, according to the cursor movement automatically add background color to the form, the cursor removed automatically remove the background color

Source: Internet
Author: User

1<! DOCTYPE html>234<meta charset= "UTF-8" >5<title>Title</title>67<body>8<table border= "1" width= "480px" >9<tr><td>1</td><td>2</td><td>3</td></tr>Ten<tr><td>1</td><td>2</td><td>3</td></tr> One<tr><td>1</td><td>2</td><td>3</td></tr> A</table> -<script> -     varMytrs = document.getElementsByTagName (' tr ')//The return value is a list, the     varLen =mytrs.length; -      for(i=0;i<len;i++) {//Loop This list to get each TR and add attributes to him -Mytrs[i].onmouseover =function() {//onmouseover= function () is the cursor moving to a location to execute this anonymous -              This. Style.backgroundcolor = ' Red '//This is the meaning of this function, which refers to which label +         }; -  +  A  atMytrs[i].onmouseout =function() {//onmouseout = function () is the cursor moving to a location to execute this anonymous function -              This. style.backgroundcolor= ' -         }; -  -    } -</script> in</body> -

Effects such as:

Use DOM1 to achieve, according to the cursor movement automatically add background color to the form, the cursor removed automatically remove the background color

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.