Home Web Front-end JS Tutorial JS CSS method to achieve table highlighting_javascript skills

JS CSS method to achieve table highlighting_javascript skills

May 16, 2016 pm 03:47 PM
css js

The example in this article describes the method of realizing table highlighting with JS CSS. Share it with everyone for your reference. The details are as follows:

Here we use JavaScript CSS to realize the table highlighting function, which is actually similar to the effect of changing the color of alternate rows. The explanation is different, but this effect is triggered when the mouse is moved up and ends when the mouse is moved out.

The operation effect is as shown below:

The specific code is as follows:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

59

60

61

62

63

64

65

66

67

68

69

70

71

72

73

74

75

76

77

78

79

80

81

82

83

84

85

86

87

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<title>高亮的表格</title>

<meta http-equiv="content-type"

 content="text/html; charset=iso-8859-1" />

<style>

p, td, th {

  font: 0.8em Arial, Helvetica, sans-serif;

}

.datatable {

  border: 1px solid #D6DDE6;

  border-collapse: collapse;

  width: 80%;

}

.datatable td {

  border: 1px solid #D6DDE6; 

  padding: 4px;

}

.datatable th {

  border: 1px solid #828282;

  background-color: #BCBCBC;

  font-weight: bold;

  text-align: left;

  padding-left: 4px;

}

.datatable caption {

  font: bold 0.9em Arial, Helvetica, sans-serif;

  color: #33517A;

  text-align: left;

  padding-top: 3px;

  padding-bottom: 8px;

}

.datatable tr:hover, .datatable tr.hilite {

  background-color: #DFE7F2;

  color: #000000;

}

</style>

</head>

<body>

<table summary="List of new students 2003" class="datatable">

 <caption>Student List</caption>

 <tr>

 <th scope="col">Student Name</th>

 <th scope="col">Date of Birth</th>

 <th scope="col">Class</th>

 <th scope="col">ID</th>

 </tr>

 <tr>

 <td>Joe Bloggs</td>

 <td>27/08/1997</td>

 <td>Mrs Jones</td>

 <td>12009</td>

 </tr>

 <tr>

 <td>William Smith</td>

 <td>20/07/1997</td>

 <td>Mrs Jones</td>

 <td>12010</td>

 </tr>

 <tr>

 <td>Jane Toad</td>

 <td>21/07/1997</td>

 <td>Mrs Jones </td>

 <td>12030</td>

 </tr>

 <tr>

 <td>Amanda Williams</td>

 <td>19/03/1997</td>

 <td>Mrs Edwards</td>

 <td>12021</td>

 </tr>

</table>

<script type="text/javascript">

var rows = document.getElementsByTagName('tr');

for (var i = 0; i < rows.length; i++) {

  rows[i].onmouseover = function() {

    this.className += ' hilite';

  }

  rows[i].onmouseout = function() {

    this.className = this.className.replace('hilite', '');

  }

}

</script>

</body>

</html>

Copy after login

I hope this article will be helpful to everyone’s JavaScript programming design.

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to correctly display the locally installed 'Jingnan Mai Round Body' on the web page? How to correctly display the locally installed 'Jingnan Mai Round Body' on the web page? Apr 05, 2025 pm 10:33 PM

Using locally installed font files in web pages Recently, I downloaded a free font from the internet and successfully installed it into my system. Now...

How to select a child element with the first class name item through CSS? How to select a child element with the first class name item through CSS? Apr 05, 2025 pm 11:24 PM

When the number of elements is not fixed, how to select the first child element of the specified class name through CSS. When processing HTML structure, you often encounter different elements...

Does H5 page production require continuous maintenance? Does H5 page production require continuous maintenance? Apr 05, 2025 pm 11:27 PM

The H5 page needs to be maintained continuously, because of factors such as code vulnerabilities, browser compatibility, performance optimization, security updates and user experience improvements. Effective maintenance methods include establishing a complete testing system, using version control tools, regularly monitoring page performance, collecting user feedback and formulating maintenance plans.

How to make progress bar with h5 How to make progress bar with h5 Apr 06, 2025 pm 12:09 PM

Create a progress bar using HTML5 or CSS: Create a progress bar container. Set the progress bar width. Create internal elements of the progress bar. Sets the internal element width of the progress bar. Use JavaScript, CSS, or progress bar library to display progress.

How to compatible with multi-line overflow omission on mobile terminal? How to compatible with multi-line overflow omission on mobile terminal? Apr 05, 2025 pm 10:36 PM

Compatibility issues of multi-row overflow on mobile terminal omitted on different devices When developing mobile applications using Vue 2.0, you often encounter the need to overflow text...

What application scenarios are suitable for H5 page production What application scenarios are suitable for H5 page production Apr 05, 2025 pm 11:36 PM

H5 (HTML5) is suitable for lightweight applications, such as marketing campaign pages, product display pages and corporate promotion micro-websites. Its advantages lie in cross-platformity and rich interactivity, but its limitations lie in complex interactions and animations, local resource access and offline capabilities.

How to set h5 table border How to set h5 table border Apr 06, 2025 pm 12:18 PM

In HTML, set H5 table borders through CSS: Introduce a CSS style sheet, style the border using border attributes (including border-width, border-style, and border-color sub-properties), and apply the style to the table elements. In addition, specific border styles can be set, such as border-top, border-right, border-bottom, and border-left.

How to solve the h5 compatibility problem How to solve the h5 compatibility problem Apr 06, 2025 pm 12:36 PM

Solutions to H5 compatibility issues include: using responsive design that allows web pages to adjust layouts according to screen size. Use cross-browser testing tools to test compatibility before release. Use Polyfill to provide support for new APIs for older browsers. Follow web standards and use effective code and best practices. Use CSS preprocessors to simplify CSS code and improve readability. Optimize images, reduce web page size and speed up loading. Enable HTTPS to ensure the security of the website.

See all articles