<html>
<head>
<title>example</title>
<style>
.bl
{
width: 50px;
height: 50px;
margin: 10px;
border: 1px solid black;
}
</style>
</head>
<body>
<div class="bl"></div>
<input type="button" value="отключить">
<script>
function fEvent ()
{
console.log('меня вызвали');
}
var div = document.querySelector('div');
div.onclick = fEvent;
document.querySelector('input').onclick = function ()
{
if (div.onclick)
{
div.onclick = null;
this.value = 'включить';
}
else
{
div.onclick = fEvent;
this.value = 'отключить';
}
}
</script>
</body>
</html>