当前位置: 代码迷 >> C# >> 关于table解决方案
  详细解决方案

关于table解决方案

热度:83   发布时间:2016-05-05 03:42:50.0
关于table
我现在有个table,里面的cell需要点击的时候是个手的形状,现在是光标,如何从后台进行设置?


table是Table tb = new Table();从后台动态生成的。
------解决思路----------------------
给那个cell添加attribute,比如
cell.Attributes.Add("onmouseover","this.style.cursor=pointer;");
cell.Attributes.Add("onmouseout","this.style.cursor=default;");
  相关解决方案