zoukankan      html  css  js  c++  java
  • 在一个表格里,超过一定宽度字符串进行截取显示点点,鼠标移上去显示全

        <table  style="100%" >
                                <tr>
                                    <th  style="30%">相关通用药物分类</th>
                                    <th  style="35%">用药目的(非交集用颜色区分)</th>
                                    <th  style="15%">交集类别</th>
                                     <th  style="15%">操作</th>
                                </tr>
                              <tr>
                                  <td field="name"><div class="z_cutout">xxxxxxxxxxxxxxxxxxxxxsssxxxxxxxxxxxxxxxxxxxxssssssssssss</div></td>
                                  <td field="jindu">xxx</td>                          
                                  <td field="time">包含</td>
                                  <td field="opear">
                                     <a href="#" class="z_a">删除关联</a>
                                  </td>
                              </tr>
                              <tr>
                                  <td field="name"><div class="z_cutout">xxxxxxxxxxxxxxxxxxxxxsssxxxxxxxxxxxxxxxxxxxxssssssssssss</div></td>
                                  <td field="jindu">xxx</td>                          
                                  <td field="time">包含</td>
                                  <td field="opear">
                                     <a href="#" class="z_a">删除关联</a>
                                  </td>
                              </tr>

    </table>

    $(function(){
                $(".z_cutout").each(function(i) {
                    if($(this).text().length>10){
                        $(this).attr("title",$(this).text());
                        var text = $(this).text().substring(0,10)+"...";
                        $(this).text(text);
                    }
                });
                
                $(".z_cutout").mouseenter(function()
                    { //鼠标移入
                        var title  = $(this).attr("title");
                        $(this).text(title);
                    }).mouseleave(function()
                    { //鼠标移出
                        if($(this).text().length>10){
                        var text = $(this).text().substring(0,10)+"...";
                        $(this).text(text);
                       }
                    });
            });

  • 相关阅读:
    PCA算法---实验代码完整版(实验代码+数据集下载)
    ubuntu 系统 anaconda 虚拟环境下各种包的安装常用命令
    真实机下 ubuntu 18.04 安装GPU +CUDA+cuDNN 以及其版本选择(亲测非常实用)
    ubuntu 18.04/16.04/14.04 双硬盘分区方案
    如何制作 linux 系统 U盘启动盘
    pandas系列 read_excel() 和 to_excel()各参数详解
    pandas系列 read_csv 与 to_csv 方法各参数详解(全,中文版)
    pycharm 修改程序运行所需内存
    如何利用pandas 将excel文件与csv文件进行相互转化
    python读取文件时提示"UnicodeDecodeError: 'gbk' codec can't decode byte 0x80 in position 205: illegal multi
  • 原文地址:https://www.cnblogs.com/jsingleegg/p/5029265.html
Copyright © 2011-2022 走看看