本文介绍了在asp.net C中单击时如何保持背景颜色#的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

亲爱的所有



正在使用c#处理asp.net项目。



我的要求是,我在网页上有图像按钮,我已设置图像网址和鼠标悬停。



这些是我的图像,这些必须设置在鼠标悬停,鼠标切换和鼠标点击。 。

1)button_red.jpg

2)button_green.jpg

3)button_yellow.jpg



通常我将图像按钮设置为button_red.jpg

鼠标悬停我设置为button_green.jpg



所以,这是我的代码

-------------------



BtnDisplay.Attributes.Add(onmouseover,this.src ='button_red.jpg');

BtnDisplay.Attributes.Add(onmouseover,this.src ='button_green.jpg ');



所以如何在鼠标点击上设置图像。我想改变点击图像上的图像按钮的颜色。



请帮助,



提前致谢...

Dear All

am working on asp.net project using c#.

My requirement is, I have Image button on web page for this i have set image url and mouse over.

these are my images, these must set on mouseover , mouseleave and mouseclicked..
1) button_red.jpg
2) button_green.jpg
3) button_yellow.jpg

Normally i have Set imageurl for imagebutton as button_red.jpg
on Mouse over i have set as button_green.jpg

so, this is my code
-------------------

BtnDisplay.Attributes.Add("onmouseover", "this.src='button_red.jpg'");
BtnDisplay.Attributes.Add("onmouseover", "this.src='button_green.jpg'");

so how to set image on mouseclicked. I want to change the color of imagebutton on image clicked.

Please help,

Thanks in advance...

推荐答案

.myButton:visited{ background-color: red;}

或者如果你的要求是其他的,那么请回答这个答案。

or if your requirement is something else then please reply to this answer.


这篇关于在asp.net C中单击时如何保持背景颜色#的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-31 18:38