Home Web Front-end JS Tutorial Highlight javascript code for table rows on web pages_javascript techniques

Highlight javascript code for table rows on web pages_javascript techniques

May 16, 2016 pm 06:15 PM
table row

This article serves as one of the development study notes.
[Text]
In web development, we often encounter situations where we need to highlight the table row pointed by the mouse. First let’s talk about the general situation.
·Easy try
CSS2 allows us to use hover pseudo-classes for HTML elements, which greatly facilitates the control of table styles.
We start with a small example:
XHTML (only the table part is listed, please complete the page by yourself, this example is passed under Transational's DTD):

Copy code The code is as follows:








< tbody>








< ;tr class="oddRow">















Then use CSS to define the style of the table:



Copy the code
The code is as follows: .datatable{ margin:15px auto;
width:500px; /*These two lines can be modified as needed, just an example*/
}
.datatable,. datatable tr,.datatable td,.datatable th,.datatable .tableheader td{
border:1px #0073ac solid;
border-collapse:collapse;
padding:3px;
}
.datatable .tableheader td,.datatable th{
font-weight:bold;
background:#fff url(images/thead.png) repeat-x;
padding:8px 5px;
}
.datatable tr:hover{
background-color:#cfe9f7;
}


I won’t explain too much about the css part. Please note that the bolded part at the end applies a pseudo-hover style to the tr element. This works perfectly under browsers that support CSS2 (IE7, FF, Opera, Safari, etc.). However, CSS1 only provides pseudo-class support for the anchor element a. Unfortunately, IE6 still only supports CSS1 pseudo-classes. So we have to make modifications to provide support for IE6.
First add a style:



Copy the code
The code is as follows: .datatable .trHover ,.datatable tr:hover{ background-color:#cfe9f7;
}


A trHover class is added here to correct the display under IE6. The next step is to write javascript. The initial idea is very simple. Don't you want the current line to be highlighted when the mouse is pointed? So just apply javascipt to each line. First write a javascript function. For the sake of unification, I combined highlighting and undoing the highlighting into one function, so that function calls can be simplified. Just bind a function to the mouseover and mouseout events of tr.



Copy code
The code is as follows: function highlightTr(o){ var regStr= /bs*trHoverb/g; /*Regular expression filter trHover class*/
if(o.className.indexOf('trHover')==-1)
o.className =" trHover";
else
o.className=o.className.replace(regStr,"");
}


A little trick is used here: regular expression replacement. Because your tr element may have other styles (classes) - such as evenRow and oddRow in this example, you cannot simply leave the object's className blank when de-highlighting. Then just as everyone imagined, bind the event to tr:



Copy the code

< td>ValueValue1


Just write event bindings for all tr. However, there are also problems with this: 1. It increases the amount of code on the page. 2. If the table is output by a background server program, sometimes you are not allowed to bind JavaScript functions to the tr element. what to do? Thinking directly, you can use js to search for tables of this style in a certain range of the page, and then bind the tr event. But let’s change our thinking today and bind js events directly to the table element to highlight a certain row!
This idea is well founded. This has to talk about the browser's event model. Due to historical reasons, various browsers have differences in how they implement JavaScript event responses, but the basic idea is still the same. js events are described in the W3C DOM as a capture-bubble model. To put it simply, it's a bit like making dumplings. The dumplings gradually sink to the bottom of the pot, accept the heat transfer, and slowly float to the top. Back to the model itself, there are two major categories of JavaScript events. First, capture the event from the outermost element, and gradually pass it inward to the element that triggered the event - this is called event capture, and then gradually expand outward to the outer element - This is called event bubbling. The implementation of IE does not support capture type events, and the implementation of bubbling events is slightly different from the W3C DOM standard, but the overall idea is the same.
After talking for a long time, we just want to use the event bubbling processing mechanism to achieve the purpose of highlighting table rows.
Once again, bubbling events spread from the innermost element that triggers the JavaScript event to the outer layer, just like the ripples caused by a stone. When the mouse slides over a certain line, first the innermost element such as text or other elements in td triggers mouseover, and then it is passed to td-->tr-->tbody-->table and responds to the mouseover event in turn. When the mouse moves out , there is also this sequential bubbling process. This is how we approach incident responders.
First, we need to modify the event binding code in XHMTL. Remove the mouseover and mouseout event handling in the tr element, and then add event handling to the table. The final table becomes like this:
Copy code The code is as follows:

Item Value
ItemItem1 ValueValue1
ItemItem2 ValueValue2
ItemItem3 ValueValue3
ItemItem4 ValueValue4
ItemItem5 ValueValue5 Item Item6 ValueValue6
Item1











;td>ItemItem2


ItemItem3

/td>










ItemValue
ItemItem1 ValueValue1
ValueValue2
ValueValue3
ValueValue4
ValueValue5
ItemItem6 ValueValue6



It is similar to the table we originally wrote Compared with this, it only has more js event binding for table elements. The next step is to perform major surgery on our highlightTr function! Here I will post the final code first and then analyze it together:



Copy the code
The code is as follows:


The idea of ​​the modified hightlightTr version is as follows: 1. Process the event and obtain the page element that triggers the javascript event. 2. Search for its parent node until tr is found. 3. Perform style processing.
It is worth mentioning that the part of obtaining the trigger event element takes browser compatibility into consideration. In IE's event model, the window object has an event attribute, and the W3C DOM standard event object must be passed to the event processing function as the only parameter, so it exists in a hidden parameter of the function (the 0th one in the parameter list). The next step is to make some judgments to prevent exceptions. The final implementation is completed by modifying the element style sheet.
This is the end of the journey of highlighting table rows compatible with different browsers (so long attributive - mouth -). It’s fun~ There are inevitable omissions and errors in the article. If you have any suggestions or comments about this article, please criticize and correct me~ ^_^
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 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months 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)

Replace String Characters in JavaScript Replace String Characters in JavaScript Mar 11, 2025 am 12:07 AM

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

8 Stunning jQuery Page Layout Plugins 8 Stunning jQuery Page Layout Plugins Mar 06, 2025 am 12:48 AM

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

Build Your Own AJAX Web Applications Build Your Own AJAX Web Applications Mar 09, 2025 am 12:11 AM

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

10 Mobile Cheat Sheets for Mobile Development 10 Mobile Cheat Sheets for Mobile Development Mar 05, 2025 am 12:43 AM

This post compiles helpful cheat sheets, reference guides, quick recipes, and code snippets for Android, Blackberry, and iPhone app development. No developer should be without them! Touch Gesture Reference Guide (PDF) A valuable resource for desig

Improve Your jQuery Knowledge with the Source Viewer Improve Your jQuery Knowledge with the Source Viewer Mar 05, 2025 am 12:54 AM

jQuery is a great JavaScript framework. However, as with any library, sometimes it’s necessary to get under the hood to discover what’s going on. Perhaps it’s because you’re tracing a bug or are just curious about how jQuery achieves a particular UI

10 jQuery Fun and Games Plugins 10 jQuery Fun and Games Plugins Mar 08, 2025 am 12:42 AM

10 fun jQuery game plugins to make your website more attractive and enhance user stickiness! While Flash is still the best software for developing casual web games, jQuery can also create surprising effects, and while not comparable to pure action Flash games, in some cases you can also have unexpected fun in your browser. jQuery tic toe game The "Hello world" of game programming now has a jQuery version. Source code jQuery Crazy Word Composition Game This is a fill-in-the-blank game, and it can produce some weird results due to not knowing the context of the word. Source code jQuery mine sweeping game

How do I create and publish my own JavaScript libraries? How do I create and publish my own JavaScript libraries? Mar 18, 2025 pm 03:12 PM

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.

jQuery Parallax Tutorial - Animated Header Background jQuery Parallax Tutorial - Animated Header Background Mar 08, 2025 am 12:39 AM

This tutorial demonstrates how to create a captivating parallax background effect using jQuery. We'll build a header banner with layered images that create a stunning visual depth. The updated plugin works with jQuery 1.6.4 and later. Download the

See all articles