在html代码中,当鼠标移动到按钮上时,按钮边框闪烁;鼠标离开按钮是,按钮恢复正常.求大神指导下。
但我代码运行无论鼠标是否移动到按钮上,按钮边框全在闪烁。我的代码如下:<htmlxmlns="http://www.w3.org/1999/xhtml"><head><m...
但我代码运行无论鼠标是否移动到按钮上,按钮边框全在闪烁。我的代码如下:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>闪烁的按钮边框</title>
</head>
<body>
<script language="JavaScript1.2">
function mouseOver()
{
if (!document.all)
return
if (button1.style.borderColor=="yellow")
button1.style.borderColor="blue"
else
button1.style.borderColor="yellow"
}
setInterval("mouseOver()", 500)
</script>
<input type="button" name="Button" value="闪烁的按钮边框" id="button1" style="border:3px solid yellow" onmouseover="mouseOver()">
</body>
</html> 展开
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>闪烁的按钮边框</title>
</head>
<body>
<script language="JavaScript1.2">
function mouseOver()
{
if (!document.all)
return
if (button1.style.borderColor=="yellow")
button1.style.borderColor="blue"
else
button1.style.borderColor="yellow"
}
setInterval("mouseOver()", 500)
</script>
<input type="button" name="Button" value="闪烁的按钮边框" id="button1" style="border:3px solid yellow" onmouseover="mouseOver()">
</body>
</html> 展开
2个回答
展开全部
把 setInterval("mouseOver()", 500)放到mouseOver()函数里面去。再加个判断color=blue的会比较好
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
加几句就行了
var T;
button1.onmouseover=function(){
T=setInterval("fmouseOver()", 500);
}
button1.onmouseout=function(){
clearInterval(t);
}
就OK了
var T;
button1.onmouseover=function(){
T=setInterval("fmouseOver()", 500);
}
button1.onmouseout=function(){
clearInterval(t);
}
就OK了
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询