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

怎样用代码使按钮的背景图片消失或出现?

怎样用代码使按钮的背景图片消失或出现? --------------------编程问答-------------------- document.body.style.backgroundImage="" --------------------编程问答-------------------- onmouseover="this.style.background=''"
onmouseout="this.style.background='http://www/1.jpg'" --------------------编程问答-------------------- document.body.style.backgroundImage="url(a.gif)" --------------------编程问答-------------------- js 
conButton=document.getElementById("Button1")
显示
conButton=document.getElementById("Button1")
conButton.background="图片地址";
//消失
conButton=document.getElementById("Button1")
conButton.background=""; --------------------编程问答-------------------- 我说的是c#.... --------------------编程问答-------------------- 写两个css(一个有背景图片,一个没有背景图片),然后在你像让它消失的时候在cs代码里控制css样式。 --------------------编程问答-------------------- 是winform吧?问题要问清楚!
补充:.NET技术 ,  C#
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,