asp.net(C#) 怎么写图片按钮的鼠标经过事件呢???
鼠标经过onmouseover图片按钮(ImgButton)的IMGURL换鼠标离开onmouseleav图片按钮(ImgButton)IMGURL换不知道这两个事件怎么...
鼠标经过onmouseover图片按钮(ImgButton)的IMGURL换
鼠标离开onmouseleav图片按钮(ImgButton)IMGURL换
不知道这两个事件怎么写?
看别人用的javascript写的
但是不懂的是提交到JAVA函数里的
(BUTTON)
BUTTON.STYLE.BACKGROUPCLORL="RED";
这里的STYLE到底什么属性可以查看到?
BACKGROUP这个背景色 应该还有很多属性 展开
鼠标离开onmouseleav图片按钮(ImgButton)IMGURL换
不知道这两个事件怎么写?
看别人用的javascript写的
但是不懂的是提交到JAVA函数里的
(BUTTON)
BUTTON.STYLE.BACKGROUPCLORL="RED";
这里的STYLE到底什么属性可以查看到?
BACKGROUP这个背景色 应该还有很多属性 展开
3个回答
展开全部
<html>
<head>
<title></title>
</head>
<body>
<input
type="image"
id="f"
width=200;
src="C:\\Windows\\winnt.bmp"/>
</body>
<Script>
var
img=document.getElementById("f");
img.onmouseover=function()
{
event.srcElement.src="C:\\Windows\\Blue
Lace
16.bmp";
}
img.onmouseout=function()
{
event.srcElement.src="C:\\Windows\\winnt.bmp";
}
</Script>
</html>
var
button=document.getElementById('某个按钮的ID')
button.style.backgroundColor="red";
具体你可以查下JAVASCRIPT脚本大全
BUTTON.STYLE.BACKGROUPCLORL="RED";
<head>
<title></title>
</head>
<body>
<input
type="image"
id="f"
width=200;
src="C:\\Windows\\winnt.bmp"/>
</body>
<Script>
var
img=document.getElementById("f");
img.onmouseover=function()
{
event.srcElement.src="C:\\Windows\\Blue
Lace
16.bmp";
}
img.onmouseout=function()
{
event.srcElement.src="C:\\Windows\\winnt.bmp";
}
</Script>
</html>
var
button=document.getElementById('某个按钮的ID')
button.style.backgroundColor="red";
具体你可以查下JAVASCRIPT脚本大全
BUTTON.STYLE.BACKGROUPCLORL="RED";
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
CSS里面有的属性都可以使用
onmouseover = "javascript:this.src='变化的图片路径'"
onmouseover = "javascript:this.src='还原的图片路径'"
要写在image标签里
onmouseover = "javascript:this.src='变化的图片路径'"
onmouseover = "javascript:this.src='还原的图片路径'"
要写在image标签里
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<html>
<head>
<title></title>
</head>
<body>
<input type="image" id="f" width=200; src="C:\\Windows\\winnt.bmp"/>
</body>
<Script>
var img=document.getElementById("f");
img.onmouseover=function()
{
event.srcElement.src="C:\\Windows\\Blue Lace 16.bmp";
}
img.onmouseout=function()
{
event.srcElement.src="C:\\Windows\\winnt.bmp";
}
</Script>
</html>
var button=document.getElementById('某个按钮的ID')
button.style.backgroundColor="red";
具体你可以查下JAVASCRIPT脚本大全
BUTTON.STYLE.BACKGROUPCLORL="RED";
<head>
<title></title>
</head>
<body>
<input type="image" id="f" width=200; src="C:\\Windows\\winnt.bmp"/>
</body>
<Script>
var img=document.getElementById("f");
img.onmouseover=function()
{
event.srcElement.src="C:\\Windows\\Blue Lace 16.bmp";
}
img.onmouseout=function()
{
event.srcElement.src="C:\\Windows\\winnt.bmp";
}
</Script>
</html>
var button=document.getElementById('某个按钮的ID')
button.style.backgroundColor="red";
具体你可以查下JAVASCRIPT脚本大全
BUTTON.STYLE.BACKGROUPCLORL="RED";
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询