Сообщение от Rodik131098
|
Прошу прощения не правильно скорректировал код
function Rectangle(w) {
this.width = w;
}
Rectangle.prototype.downShow = function() {
this.width = this.width - 1;
document.write(rect1.width)
}
var rect1 = new Rectangle(100);
setInterval(rect1.downShow, 200);
|
У меня он работает...
<!DOCTYPE html>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=windows-1251' />
<!--
<script src='http://code.jquery.com/jquery-latest.js'></script>
<script src="https://code.angularjs.org/1.3.9/angular.min.js"></script>
<script src="https://code.angularjs.org/1.3.9/angular-route.js"></script>
-->
<style type='text/css'>
</style>
<script type='text/javascript'>
function Rectangle(w) {
this.width = w;
}
Rectangle.prototype.downShow = function() {
this.width = this.width - 1;
document.write(rect1.width)
}
var rect1 = new Rectangle(100);
setInterval(rect1.downShow, 200);
</script>
</head>
<body>
</body>
</html>