当前位置:编程学习 > C#/ASP.NET >>

Datalist中使用LingButton,怎么实现鼠标放上去后,LingButton变色

在Datalist中使用LingButton,怎么实现鼠标放上去后,LingButton变色,已经写过样式了,但对LingButton没反应,怎么写呀 --------------------编程问答-------------------- 鼠标悬浮事件啊  百度一大堆 --------------------编程问答-------------------- LingButton 生成的html tag 是 <a>

你怎么写的样式 --------------------编程问答--------------------
引用 2 楼 sandy945 的回复:
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
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,