连接颜色的问题
在datalist里绑定数据并设为连接,在鼠标指向连接时怎么让连接的文字变色
------解决方案--------------------那把CSS改为
.DataList:link {
font-size: 12px;
color: #ffffff;
text-decoration: none;
}
.DataList:visited {
font-size: 12px;
color: #ffffff;
text-decoration: none;
}
.DataList:hover {
font-size: 12px;
color: #ffffff;
text-decoration: underline;
}
然后设置DataList里面的连接按钮的CSSClass= "DataList "