鼠标悬浮/点击/离开超级链接时改变颜色

$("span.linkspan").bind("mouseover",function(){
$(this).css("color","red");
}).bind("mouseleave",function(){
$(this).css("color","blue");
})   这个JS代码  鼠标移开固定是蓝色,我想鼠标移开是原来的颜色需要怎么改?
FineReportKerydia 发布于 2018-5-24 11:30
悬赏:2 F币 + 添加悬赏
提示:增加悬赏、完善问题、追问等操作,可使您的问题被置顶,并向所有关注者发送通知
共5回答
最佳回答
0
axing发布于2018-5-24 11:30(编辑于 2023-9-6 09:34)
555
  • Kerydia Kerydia(提问者) 恢复不回去,变成红色之后回不去原来的颜色了
    回复
    2018-05-24 13:43 
  • axing axing 回复 Kerydia :attr在这里不起作用呢,你把它改成css吧,就把第三行的attr改成css,其他的不用动
    回复
    2018-05-24 13:55 
  • Kerydia Kerydia(提问者) 这些都试过了,好像不支持,最后用span解决了<span onmouseover=\"this.style.color=\'red\'\" onmouseout=\"this.style.color=\'white\'\"   >123</span>
    回复
    2018-05-24 13:57 
最佳回答
0
小帆_智能客服发布于2018-5-24 11:30(编辑于 2023-9-6 09:34)
555
  • 0关注人数
  • 640浏览人数
  • 最后回答于:2018-5-24 13:57
    活动推荐 更多
    热门课程 更多
    返回顶部