Показать сообщение отдельно
  #2 (permalink)  
Старый 21.12.2016, 02:19
Аватар для рони
Профессор
Отправить личное сообщение для рони Посмотреть профиль Найти все сообщения от рони
 
Регистрация: 27.05.2010
Сообщений: 33,109

polin11,
<html>
<head>
<script type="text/javascript">
function animal()
{
    this.name="WOLF";
}
animal.prototype.repeat=function(){
  var self = this;
  document.getElementById('target').innerHTML+=this.name+'<br/>';
  setTimeout(self.repeat.bind(self), 1000);
}
document.addEventListener('DOMContentLoaded', function () {
var ex=new animal();
ex.repeat();
});
</script>
</head>
<body>
<div id="target"></div>
</body>
</html>
Ответить с цитированием