为什么代码都一样,就是跑不起来?
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style>
#small{
width: 200px;
height: 200px;
left: -200px;
position: relative;
background-color: red;
}
</style>
<script>
window.onload=function(){
var div1=document.getElementById('samll');
div1.onmouseover=function(){
startfun();
}
}
function startfun(){
var div1=document.getElementById('samll');
setInterval(function(){
div1.style.left=div1.offsetLeft+10+'px';
},30)
}
</script>
</head>
<body>
<div id="small"></div>
</body>
</html>