<!DOCTYPE HTML>
<html>
<head>
<title>Untitled</title>
</head>
<body> <p id='next'>жмак сюды</p>
<script>
function Carousel(width, count){
this.width = width;
this.count = count;
}
Carousel.prototype.init = function(){
// код
}
Carousel.prototype.showNextPicture = function(){
alert(this.width); // 130 - если вызвать прямо, undefined - если по щелчку мыши
}
var carousel = new Carousel(130, 5);
carousel.init();
//carousel.showNextPicture();
// Обработчики событий
document.getElementById('next').addEventListener("click", function(){
carousel.showNextPicture()
} , false);
//document.getElementById('prev').addEventListener("click", carousel.showPreviousPicture, false);
</script>
</body>
</html>
|