鼠标悬停的链接按钮变大,字体粗体

时间:2012-07-23 08:50:50

标签: javascript jquery asp.net linkbutton

当我将鼠标悬停在ASP NET链接按钮上时,如何将其变为粗体字体?

enter image description here

a:hover{something here}

不起作用

1 个答案:

答案 0 :(得分:1)

您可以做的是在链接按钮中添加或删除属性,如

$('#linkbutton-id“')。mouseover(function(){   $( '这')ATTR( “字体权重”, “重量:粗体”)。

});

$('#linkbutton-id“')。mouseover(function(){   $( '这')。removeAttr( “字体权重”)

});

你也可以使用Jquery的addClass或removeClass函数,它们为你提供了为元素添加css类以实现任何效果的功能