Datalist中使用LingButton,怎么实现鼠标放上去后,LingButton变色
在Datalist中使用LingButton,怎么实现鼠标放上去后,LingButton变色,已经写过样式了,但对LingButton没反应,怎么写呀 --------------------编程问答-------------------- 鼠标悬浮事件啊 百度一大堆 --------------------编程问答-------------------- LingButton 生成的html tag 是 <a>你怎么写的样式 --------------------编程问答--------------------
正确 --------------------编程问答-------------------- <head runat="server">
<title>欢迎</title>
<style type="text/css">
a:link
{
color: White;
text-decoration: none;
}
a:visited
{
color: White;
text-decoration: none;
}
a:hover
{
color: Gray;
text-decoration: none;
}
a:active
{
color: White;
text-decoration: none;
}
</style>
</head>
对在DateList中的LinkButton没反应
补充:.NET技术 , ASP.NET