java求问一个鼠标经过图片图片放大的JAVA代码 100
<imgsrc="1.jpg"width="100"height="100"border="1"oldwidth="100"oldheight="100"onmouseo...
<img src= "1.jpg " width= "100 " height= "100 " border= "1 "
oldwidth= "100 " oldheight= "100 " onmouseover= "this.width =
this.width * 1.1; this.height = this.height * 1.1; " onmouseout=
"this.width = this.getAttribute( 'oldwidth '); this.height =
this.getAttribute( 'oldheight '); ">
这个代码有啥问题呀? 我研究过很多次了,每次都是鼠标经过图片后,图片正常放大,然后鼠标离开之后,图片直接变成一个点了,我觉得问题出在onmouseout上,但是我不知道是咋回事,求大神解决~~! 展开
oldwidth= "100 " oldheight= "100 " onmouseover= "this.width =
this.width * 1.1; this.height = this.height * 1.1; " onmouseout=
"this.width = this.getAttribute( 'oldwidth '); this.height =
this.getAttribute( 'oldheight '); ">
这个代码有啥问题呀? 我研究过很多次了,每次都是鼠标经过图片后,图片正常放大,然后鼠标离开之后,图片直接变成一个点了,我觉得问题出在onmouseout上,但是我不知道是咋回事,求大神解决~~! 展开
4个回答
展开全部
楼主你的意思是前面设置了oldwidth和oldheight属性但为什么后面获得不了是吧。我去查了下api。里面没有oldwidth和oldheight方法,你不能这样定义。然后我是没有见过getAttribute方法,不知道是不是真的有,你完全可以这样写
<img src= "1.jpg " width= "100 " height= "100 " border= "1 " onmouseover= "this.width =
110; this.height = 110; " onmouseout="this.width = 100; this.height = 100; ">
<img src= "1.jpg " width= "100 " height= "100 " border= "1 " onmouseover= "this.width =
110; this.height = 110; " onmouseout="this.width = 100; this.height = 100; ">
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
this.getAttribute( 'oldwidth '); 这里应该错了
修改一下
onmouseout="this.width = 100; this.height = 100:
修改一下
onmouseout="this.width = 100; this.height = 100:
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
onmouseout 事件 , 给的图片的宽,高 度是不是 给的太小了 。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询