移动端web开发的touchstart,为什么会影响定时器
<style type="text/css">
div{ width:50px; height:50px; background:red; position:absolute; left:0; top:0;}
</style>
<body id='bdy'>
<div id='box'></div>
</body>
<script>
var obj=document.getElementById('box');
var cc=0
setInterval(function(){
cc=cc+4;
obj.style.top=cc+'px';
},30)
document.addEventListener('touchstart',function(){ })
</script>
用360浏览器手机模拟器测试,方块运动时,狂点鼠标,小块就会一卡一卡的,点一下就停顿一下,这是为什么。touchstart有什么默认事假吗