为了账号安全,请及时绑定邮箱和手机立即绑定

为什么我这段代码实现不了最开始的伸长JS动画啊,总是提示错误 Cannot set property 'width' of undefined"


<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title>横向菜单</title>
		<style>
			*{margin:0;padding:0}
			ul{
				list-style: none;
				height: 50px;
				border-bottom: solid 5px #F60;
			}
			li{
				float:left;
				margin-top:20px;
			}
			a{
				text-decoration: none;
				display: block;
				height:30px;
				width: 120px;
				line-height: 30px;
				margin-bottom: 1px;
				text-align: center;
				background: lightgrey;
			}
			.on,a:hover{
				color:white;
				background: orangered;
				height:30px;
				width:120px;
				line-height:30px;
			}
		</style>
		<script>
			window.onload=function(){
				var A=document.getElementsByTagName('a');
				for(var i=0;i<A.length;i++)
				{
					var This=this;
					A[i].onmouseover=function(){
						setInterval(function(){
							This.style.width=This.offsetWidth+8+"px";
						},30);
					}
				}
			}
		</script>
	</head>
	<body>
		<ul>
			<li><a class="on" href="#">首        页</a></li>
			<li><a href="#">新闻快讯</a></li>
			<li><a href="#">产品展示</a></li>
			<li><a href="#">售后服务</a></li>
			<li><a href="#">联系我们</a></li>
		</ul>
	</body>
</html>


正在回答

1 回答

var This=this;写在onmouseover里面

0 回复 有任何疑惑可以回复我~
#1

小S涩 提问者

非常感谢!
2016-05-24 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
导航条菜单的制作
  • 参与学习       123899    人
  • 解答问题       813    个

水平、垂直、圆角导航条菜单,让您的技术探索之路更高效

进入课程

为什么我这段代码实现不了最开始的伸长JS动画啊,总是提示错误 Cannot set property 'width' of undefined"

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信