MooTools — это инструмент, который можно использовать для проектирования объектно-ориентированных моделей. Давайте обсудим в этой главе простой пример библиотеки MooTools.
пример
Здесь мы спроектируем модель с именем Rectangle, используя Class. Для этого нам нужно объявить свойства — Ширина и Высота.
Взгляните на следующий код и сохраните его в sample.html.
<html> <head> <script type = "text/javascript" src = "MooTools-Core-1.6.0.js"></script> <script type = "text/javascript" src = "MooTools-More-1.6.0.js"></script> <script type = "text/javaScript"> var Rectangle = new Class({ //properties width: 0, height: 0, //methods initialize: function(widthVal, heightVal) { this.width = widthVal; this.height = heightVal; }, details: function() { document.write("Welcome to MooTools demo program"); document.write("Width: "+this.width+" Height: "+this.height); }, }); var rec = new Rectangle(5,4); rec.details(); </script> </head> <body> </body> </html>
Вы получите следующий вывод —