Heim > Web-Frontend > js-Tutorial > Hauptteil

HTML CSS JS realisiert feste TABLE-Spalten, die perfekt mit den wichtigsten Browser-Javascript-Kenntnissen kompatibel sind

WBOY
Freigeben: 2016-05-16 16:02:11
Original
1139 Leute haben es durchsucht

Wenn eine Tabelle in Unternehmensanwendungen mit BS-Architektur eine große Anzahl von Spalten aufweist, besteht ein häufiger Benutzerbedarf darin, die ersten paar wichtigen Spalten zu korrigieren. Auf diese Weise erleichtern die festen Spalten den Benutzern das Anzeigen von Daten beim Ziehen Die Bildlaufleiste ist großartig. Einige umfangreiche JS-Komponentenbibliotheken verfügen ebenfalls über diese Funktion. Gibt es also einen einfacheren Weg, diese Funktion zu erreichen?

Eine gängige Lösung für diese Anforderung ist die Verwendung der Tabellenspleißmethode. Wenn Sie eine statische Webseite oder eine dynamische Seite mit einfachen Funktionen erstellen möchten, ist die Logik relativ einfach und die Technologie nicht kompliziert Wenn Sie jedoch viele dynamische Funktionen ausführen möchten, müssen Sie viel redundanten Code schreiben, der schwierig zu warten ist. Selbst eine einfache Funktion erfordert das Schreiben einer großen Menge Code, beispielsweise für die Ereignisverarbeitung ungeschickt und sehr flexibel. Keine gute Lösung.

Nach langer Analyse und Recherche sowie Experimenten in verschiedenen Szenarien haben wir eine Lösung mit sehr guter Kompatibilität gefunden. Im Allgemeinen verwende ich den folgenden Code und gebe eine Erklärung.

<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script type="text/javascript">
function divScroll(scrollDiv){
  var scrollLeft = scrollDiv.scrollLeft;
  document.getElementById("tableDiv_title").scrollLeft = scrollLeft;
  document.getElementById("tableDiv_body").scrollLeft = scrollLeft;    
}
function divYScroll(scrollYDiv){
  var scrollTop = scrollYDiv.scrollTop;
  document.getElementById("tableDiv_y").scrollTop = scrollTop;  
}
function onwheel(event){
  var evt = event||window.event;
  var bodyDivY = document.getElementById("tableDiv_y");
  var scrollDivY = document.getElementById("scrollDiv_y");
  if (bodyDivY.scrollHeight>bodyDivY.offsetHeight){
    if (evt.deltaY){
      bodyDivY.scrollTop = bodyDivY.scrollTop + evt.deltaY*7;
      scrollDivY.scrollTop = scrollDivY.scrollTop + evt.deltaY*7;
    }else{
      bodyDivY.scrollTop = bodyDivY.scrollTop - evt.wheelDelta/5;
      scrollDivY.scrollTop = scrollDivY.scrollTop - evt.wheelDelta/5;
    }
  }
}
</script>
<style type="text/css">
body {
margin:0;
padding:0;
}
table {
border-collapse:collapse;
border:0;
border:none;
}
 
table td {
border:1px solid #000;
overflow:hidden;
padding:0 2px;
}
</style>
</head>
<body>
<div style="width:500px; position:relative; padding-right:18px;">
  <div style="position:relative;height:368px;overflow:hidden;width:100%">
  <div style="padding-left:108px; width:auto; overflow:hidden; background:#f00;" id="tableDiv_title" >
  <table border="0" cellspacing="0" cellpadding="0" >
   <tr>
    <td style="min-width:30px; max-width:30px; left:0; top:0; width:30px; overflow:hidden; background-color:#f00;position:absolute;z-index:1;">000</td>
    <td style="min-width:74px; max-width:74px; left:30px; top:0; width:74px; overflow:hidden; background-color:#f00;position:absolute;z-index:1;">自动表格</td>
    <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
    <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
    <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
    <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
    <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
    <td style="min-width: 100px; max-width: 100px; width: 100px;" >最后一列</td>
   </tr>
   </table>
   </div> 
  <div style="overflow:hidden; position:absolute;height:128px; width:100%;" id="tableDiv_y" onmousewheel="onwheel(event);" onwheel="onwheel(event);">
    <div style="padding-left:108px; width:auto;overflow:hidden;" id="tableDiv_body">
    <table border="0" cellspacing="0" cellpadding="0" >
     <tr>
      <td style="min-width:30px; max-width:30px; left:0; width:30px; overflow:hidden; background-color:#fff;position:absolute;z-index:1;">001</td>
      <td style="min-width:74px; max-width:74px; left: 30px; width: 74px; overflow:hidden; background-color:#fff;position:absolute;z-index:1;">自动表格</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >最后一列</td>
     </tr>
      <tr>
      <td style="min-width:30px; max-width:30px; left:0; width:30px; overflow:hidden; background-color:#fff; position:absolute; z-index:1;">002</td>
      <td style="min-width:74px; max-width:74px; left:30px; width:74px; overflow:hidden;background-color:#fff; position:absolute; z-index:1;">自动表格</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >最后一列</td>
     </tr>
     <tr>
      <td style="min-width:30px; max-width:30px; left:0; width:30px; overflow:hidden; background-color:#fff;position:absolute;z-index:1;">003</td>
      <td style="min-width:74px; max-width:74px;left: 30px; width: 74px; overflow:hidden;background-color:#fff;position:absolute;z-index:1;">自动表格</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >最后一列</td>
     </tr>
     <tr>
      <td style="min-width:30px; max-width:30px; left:0; width:30px; overflow:hidden; background-color:#fff;position:absolute;z-index:1;">004</td>
      <td style="min-width:74px; max-width:74px; left: 30px; width: 74px; overflow:hidden;background-color:#fff;position:absolute;z-index:1;">自动表格</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >最后一列</td>
     </tr>
      <tr>
      <td style="min-width:30px; max-width:30px; left:0; width:30px; overflow:hidden; background-color:#fff;position:absolute;z-index:1;">005</td>
      <td style="min-width:74px; max-width:74px; left: 30px; width: 74px; overflow:hidden;background-color:#fff;position:absolute;z-index:1;">自动表格</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >最后一列</td>
     </tr>
      <tr>
      <td style="min-width:30px; max-width:30px; left:0; width:30px; overflow:hidden; background-color:#fff;position:absolute;z-index:1;">006</td>
      <td style="min-width:74px; max-width:74px; left: 30px; width: 74px; overflow:hidden;background-color:#fff;position:absolute;z-index:1;">自动表格</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >最后一列</td>
     </tr>   
     <tr>
      <td style="min-width:30px; max-width:30px; left:0; width:30px; overflow:hidden; background-color:#fff;position:absolute;z-index:1;">007</td>
      <td style="min-width:74px; max-width:74px; left: 30px; width: 74px; overflow:hidden;background-color:#fff;position:absolute;z-index:1;">自动表格</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >最后一列</td>
     </tr>
      <tr>
      <td style="min-width:30px; max-width:30px; left:0; width:30px; overflow:hidden; background-color:#fff;position:absolute;z-index:1;">008</td>
      <td style="min-width:74px; max-width:74px; left: 30px; width: 74px; overflow:hidden;background-color:#fff;position:absolute;z-index:1;">自动表格</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >最后一列</td>
     </tr>
      <tr>
      <td style="min-width:30px; max-width:30px; left:0; width:30px; overflow:hidden; background-color:#fff;position:absolute;z-index:1;">009</td>
      <td style="min-width:74px; max-width:74px; left: 30px; width: 74px; overflow:hidden;background-color:#fff;position:absolute;z-index:1;">自动表格</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >最后一列</td>
     </tr>
      <tr>
      <td style="min-width:30px; max-width:30px; left:0; width:30px; overflow:hidden; background-color:#fff;position:absolute;z-index:1;">010</td>
      <td style="min-width:74px; max-width:74px; left: 30px; width: 74px; overflow:hidden;background-color:#fff;position:absolute;z-index:1;">自动表格</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >56454自动</td>
      <td style="min-width: 100px; max-width: 100px; width: 100px;" >最后一列</td>
     </tr>      
    </table>
  </div>     
  </div> 
   <div style="background-color:#eee;overflow:hidden;top:150px; width:100%; z-index:2;position:absolute;">
    <div style="margin-left:108px; width:auto;overflow-x:scroll;overflow-y:hidden;" onscroll='divScroll(this);'>
      <div style="width:630px; height:1px;"></div>
    </div>
  </div>
  </div>
    <div id="scrollDiv_y" style="display:block; overflow-x:hidden; overflow-y:scroll; position:absolute; top:22px; right:0px; height:118px; padding-bottom:10px;" onscroll='divYScroll(this);'>
      <div style="width:1px; height:194px;"></div>
     </div>
  </div>
  </div>
</body>
</html>


Nach dem Login kopieren

1. Gesamtstruktur:

Das Grundelement der Seite ist DIV TABLE. Die festen Spalten müssen eine feste Breite angeben, um das Problem der horizontalen und vertikalen Bildlaufleisten zu lösen Die Leiste wird mit zwei Schichten DIV umwickelt und durch die JS-Steuerung an einer festen Position fixiert, um den Effekt einer normalen DIV-Bildlaufleiste zu simulieren.

2. Positionierung:

Feste Spalten sollten absolut positioniert sein und die linke Verschiebung wird durch das linke Attribut gesteuert. Um sicherzustellen, dass die festen Spalten oben schweben, setzen Sie den Z-Index auf 1. Um eine normale Anzeige bei vertikaler Bildlaufleiste zu gewährleisten, ist der äußere DIV des Tabellenkörpers absolut positioniert, daher müssen auch die Bildlaufleisten absolut positioniert sein. Darüber hinaus verwendet das innere DIV des Tabellenkopfes, des Tabellenkörpers und der Bildlaufleiste das Attribut margin-left, um den linken Rand zu steuern, sodass der Versatz der festen Spalte frei bleibt.

2. Breitenberechnung:

Die Breite jeder Spalte muss mit einem festen Wert angegeben werden, und ein wichtiger Punkt muss beachtet werden, dh die Attribute „Min-Breite“ und „Max-Breite“ müssen dem Breitenwert hinzugefügt werden. Der Inhalt der Header- und Body-Ebene DIV, Breite ist automatisch, adaptive Tabellenbreite, äußere DIV-Breite beträgt 100 %, das äußerste DIV steuert den rechten Innenrand über das Attribut padding-right und lässt die Position der vertikalen Bildlaufleiste frei.

3. Höhenberechnung:

Aufgrund der Existenz einer absoluten Positionierung muss die Höhe der gesamten Tabellenkomponente angegeben werden, die berechnet werden kann. Der obere Wert der vertikalen Bildlaufleiste muss ebenfalls berechnet werden.

4. Bildlaufleiste:

Ein herausragendes Merkmal dieser Lösung ist die virtuelle Bildlaufleiste, die die horizontale Bildlaufleiste des Tabellenkörpers DIV durch ein DIV mit der gleichen Breite wie die Tabelle und einer Höhe von einem Pixel simuliert. Das Gleiche gilt für die Vertikale Bildlaufleiste. Der Grund, warum diese Form übernommen wird, besteht darin, dass die horizontale Bildlaufleiste schöner aussieht, wenn sie so behandelt wird. Nachdem die vertikale Bildlaufleiste so behandelt wurde, muss die äußere DIV-Breite des Tabellenkopfes und des Tabellenkörpers nicht berechnet werden Andernfalls muss bei Vorhandensein einer Bildlaufleiste die Verschiebung der Breite der vertikalen Bildlaufleiste von der horizontalen Bildlaufleiste befreit werden. Diese Berechnung ist nicht kompliziert, aber vorhanden In einigen Fällen kann es zu Problemen kommen, auf die hier nicht näher eingegangen werden soll.

5. Scroll-Ereignis:

Da die Bildlaufleisten im Tabellenkörper ausgeblendet sind, funktioniert das Mausrad nicht. Sie müssen daher JS verwenden, um das Mausradereignis zu verarbeiten. Der Beispielcode in diesem Artikel ist mit gängigen Browsern kompatibel. Der entscheidende Punkt hierbei ist, dass onmousewheel- und onwheel-Ereignisse gleichzeitig mit dem IE geschrieben werden. Achten Sie bei der Berechnung der Scroll-Distanz lediglich auf den Unterschied zwischen den Attributen deltaY und WheelDelta.

6. Analyse der Vor- und Nachteile:

Die Lösung in diesem Artikel wurde gestrafft. Der Schwerpunkt liegt auf der klaren Erläuterung der Prinzipien. In unserer Realität ist es sehr kompliziert. Dieses Design berücksichtigt viele Kompatibilitäten, einschließlich Browserkompatibilität und Kompatibilität in verschiedenen Szenarien. Wenn die Anforderungen einfach sind, gibt es Raum für Vereinfachung.

Der Vorteil dieser Lösung besteht darin, dass, wenn Sie eine Komponente erstellen möchten, die HTML-Struktur einfach ist, der Tabellenkopf und der Tabellenkörper beide eine TABELLE sind und der JS-Steuercode sehr sauber und leicht zu warten ist. Der Nachteil besteht darin, dass es zu viel Berechnung erfordert. Wir glauben, dass diese Lösung besser für die Entwicklung von Komponenten geeignet ist und statische Seiten etwas umständlich sind.

Das Obige ist der gesamte Inhalt dieses Artikels. Ich hoffe, er gefällt Ihnen allen.

Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!