<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
div{
width: 100px;
height: 100px;
border: 1px solid gray;
}
</style>
</head>
<body>
<div></div>
<div></div>
<div></div>
<script>
document.querySelectorAll('div').forEach(el=> el.onmouseover =e=> el.textContent = 'Вы навели курсор на этот див ' + (+el.textContent.replace(/\D/g,'')+1) + ' раз!');
</script>
</body>
</html>