如何在asp.net中为css提供工具提示?

时间:2015-03-30 08:21:24

标签: javascript jquery css asp.net

    protected void grd_RowDataBound(object sender, GridViewRowEventArgs e)
           {
               if (e.Row.RowType == DataControlRowType.DataRow)
               {
                   foreach (TableCell cell in e.Row.Cells)
                   {
                       string cellText = e.Row.Cells[5].Text;

                       if (cell.Text.Length > 10)
                       {
                           cell.Text = cell.Text.Substring(0, 10) + "....";
                           cell.ToolTip = cellText;
                       }
                   }
               }
           }

从上面的方法我们在表格的每一列上都有工具提示。 下面的代码显示第6列只会填充工具提示。

    <script type="text/javascript">
          $(document).ready(function() {
           focus.($("#grdStudentList td:nth-child(6)"));
          }); 
     </script>

我将如何为显示为工具提示的焦点提供css。

1 个答案:

答案 0 :(得分:0)

请检查所有单词是否包含超过10个字符

( if (cell.Text.Length > 10)