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

为什么浏览器报这个错

错误:

1.html:34 Uncaught TypeError: Cannot set property 'onmouseover' of null

    at window.onload (1.html:34)


原代码

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>Document</title>

<style type="text/css" media="screen">

*{

padding: 0;

margin: 0;

}

.dv1{

margin-top: 20px;

width: 200px;

height: 200px;

background-color: red;

margin-left: -200px;

position: relative;

}

.dv2{

margin-top: 85px;

width: 50px;

height: 50px;

background-color: gold;

position: absolute;

left: 200px;

}

</style>

</head>

<body>

<div class="dv1"><span class="dv2">ghcvn </span></div>

<script type="text/javascript" charset="utf-8" async defer>

window.onload = function(){

var dObj = document.getElementById("dv1");

dObj.onmouseover = function(){

startMove();

}

}

function startMove(){

var dObj = document.getElementById("dv1");

setInterval(function(){

dObj.style.left = dObj.offsetLeft+10+"px";

},30)

}

</script>

</body>

</html>


正在回答

1 回答

没传参数

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

举报

0/150
提交
取消

为什么浏览器报这个错

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