可以实现把鼠标放上去的时候字体变色吗,代表这行字是可以超链的;像图片那样;
还有就是它鼠标放上去的时候回出现下划线,也想弄一下;
参考鼠标悬浮/点击/离开超级链接时改变颜色-https://help.fanruan.com/finereport/doc-view-920.html
==========
原来代码后面加一个css代码
$('.linkspan').mouseover(function(){$(this).css('color','red').css('text-decoration','underline');}); //鼠标移上
JS实现分页预览改变鼠标悬停所在的行列的背景色-https://help.fanruan.com/finereport/doc-view-1625.html
参考这个,文字颜色是color,下划线是text-decoration:underline