AngularJS - очень мощная платформа JavaScript. Он используется в проектах Single Page Application (SPA). Он расширяет HTML DOM с дополнительными атрибутами и делает его более восприимчивым к действиям пользователя. AngularJS является открытым исходным кодом, абсолютно бесплатным и используется тысячами разработчиков по всему миру. Он лицензируется по лицензии Apache версии 2.0.

Статьи предназначены для профессионалов в области программного обеспечения, которые хотят легко и просто освоить основы AngularJS и его концепций программирования. Описаны компоненты AngularJS с подходящими примерами.

Внимание!!!

Если примеры не отображаются на странице или искажены, проверьте не блокирует ли их браузер!

Opera

Свободу АНГУЛЯРУ в Opera!!! )))

Google Chrome

Свободу АНГУЛЯРУ в Google Chrome!!! )))

Mozilla Firefox

Свободу АНГУЛЯРУ в Mozilla Firefox!!! )))

Yandex

Свободу АНГУЛЯРУ в Yandex!!! )))

Вы должны иметь базовое понимание JavaScript и любого текстового редактора. Поскольку будут разрабатываться веб-приложения с использованием AngularJS, будет хорошо, если у вас есть понимание других веб-технологий, таких как HTML, CSS, AJAX и т.д.

<!doctype html>
<html ng-app>
  
   <head>
      <script src = "https://ajax.googleapis.com/ajax/libs/angularjs/1.3.3/angular.min.js"></script>
   </head>
  
   <body>
      <div>
         <label>Name:</label>
         <input type = "text" ng-model = "yourName" placeholder = "Enter a name here">
         <hr />
        
         <h1>Hello {{yourName}}!</h1>
      </div>
     
   </body>
</html>

Hello {{yourName}}!

We use cookies on our website. Some of them are essential for the operation of the site, while others help us to improve this site and the user experience (tracking cookies). You can decide for yourself whether you want to allow cookies or not. Please note that if you reject them, you may not be able to use all the functionalities of the site.

Ok



Понравилась статья? Поделитесь ею с друзьями и напишите отзыв в комментариях!

We use cookies on our website. Some of them are essential for the operation of the site, while others help us to improve this site and the user experience (tracking cookies). You can decide for yourself whether you want to allow cookies or not. Please note that if you reject them, you may not be able to use all the functionalities of the site.

Ok