本文介绍了在asp.net中,如果我将鼠标放在特定位置或特定标签中,如何更改颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嗨......
我将Corsor放在特定字段或按钮上时要更改颜色
谁能告诉我如何编写代码


在thanx中进步...

hi....
i want change the color when i put the corsor on specific field or button
can any one tell me how to write code for it


advance in thanx...

推荐答案

//In web application
yourlabelid.Attributes.Add("onmousemove","abc();")


<script type="text/javascript" language="javascript"&gt;
        function abc() {
            var v = document.getElementById(<'%=yourlabelid.ClientID%'>);
            v.style.backgroundColor = "red";
        }
    </script>


//In windows use MouseHover event of label
private void panel1_MouseHover(object sender, System.EventArgs e)
       {

           yourlabelname.ForeColor=SystemColors.ControlText;
       }



这篇关于在asp.net中,如果我将鼠标放在特定位置或特定标签中,如何更改颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 17:31