HTMLテーブルのセルのツールチップ(JavaScriptなし)


回答:


167

やってみました?

<td title="This is Title">

Firefox v 18(Aurora)、Internet Explorer 8、Google Chrome v 23xで正常に動作します


1
ですが、本当に遅いです:(

18

はい。title使い勝手が悪いセル要素の属性を使用するか、CSSツールチップ(既存のいくつかの質問、おそらくこの質問の重複)を使用できます。


16

「title」属性を使用したMudassar Bashirによる最高ランクの回答は、これを行う最も簡単な方法のようですが、コメント/ツールチップの表示方法をあまり制御できません。

カスタムツールチップクラスに対するChristopheの回答は、コメント/ツールチップの動作をより詳細に制御できるようだとわかりました。提供されているデモにはテーブルが含まれていないため、質問に従って、ここにテーブルを含むデモがあります

スパンの親要素(この場合はa)の "position"スタイルは、 "relative"に設定する必要があることに注意してください。これにより、コメントが表示されたときにテーブルのコンテンツが押し出されなくなります。それを理解するのに少し時間がかかりました。

#MyTable{
  border-style:solid;
  border-color:black;
  border-width:2px
}

#MyTable td{
  border-style:solid;
  border-color:black;
  border-width:1px;
  padding:3px;
}

.CellWithComment{
  position:relative;
}

.CellComment{
  display:none;
  position:absolute; 
  z-index:100;
  border:1px;
  background-color:white;
  border-style:solid;
  border-width:1px;
  border-color:red;
  padding:3px;
  color:red; 
  top:20px; 
  left:20px;
}

.CellWithComment:hover span.CellComment{
  display:block;
}
<table id="MyTable">
  <caption>Cell 1,2 Has a Comment</caption>
  <thead>
    <tr>
      <td>Heading 1</td>
      <td>Heading 2</td>
      <td>Heading 3</td>
    </tr>
  </thead>
  <tbody>
    <tr></tr>
      <td>Cell 1,1</td>
      <td class="CellWithComment">Cell 1,2
        <span class="CellComment">Here is a comment</span>
      </td>
      <td>Cell 1,3</td>
    <tr>
      <td>Cell 2,1</td>
      <td>Cell 2,2</td>
      <td>Cell 2,3</td>
    </tr>
  </tbody>
</table>


5

cssと:hover疑似プロパティを使用できます。こちらが簡単なデモです。次のcssを使用します。

a span.tooltip {display:none;}
a:hover span.tooltip {position:absolute;top:30px;left:20px;display:inline;border:2px solid green;}

古いブラウザは:hoverのサポートに制限があることに注意してください。


2

BioData41が追加したものの進化...

CSSスタイルで次のものを配置する

     <style>

        .CellWithComment{position:relative;}

        .CellComment
        {
            visibility: hidden;
            width: auto;
            position:absolute; 
            z-index:100;
            text-align: Left;
            opacity: 0.4;
            transition: opacity 2s;
            border-radius: 6px;
            background-color: #555;
            padding:3px;
            top:-30px; 
            left:0px;
        }   
        .CellWithComment:hover span.CellComment {visibility: visible;opacity: 1;}
</style>

次に、次のように使用します。

        <table>
            <tr>
                <th class="CellWithComment">Category<span class="CellComment">"Ciaooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo"</span></th>
                <th class="CellWithComment">Code<span class="CellComment">"Ciaooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo"</span></th>
                <th>Opened</th>
                <th>Event</th>
                <th>Severity</th>           
                <th>Id</th>
                <th>Component Name</th>
            </tr>
            <tr>
                <td>Table cell</td>
                <td>Table cell</td>
                <td>Table cell</td>
                <td>Table cell</td>
                <td>Table cell</td>
                <td>Table cell</td>
                <td>Table cell</td>
            </tr>
            <tr>
                <td>Table cell</td>
                <td>Table cell</td>
                <td>Table cell</td>
                <td>Table cell</td>
                <td>Table cell</td>
                <td>Table cell</td>
                <td>Table cell</td>
            </tr>
        </table>

違いは何ですか?
ダニエルC.ソブラル2018年

0
if (data[j] =='B'){
    row.cells[j].title="Basic";
}

Javaスクリプトでは、データの値を比較することにより条件付きでタイトルを追加します。テーブルは、Javaスクリプトによって動的に生成されます。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.