Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Online AngularJS Editor

<!doctype html>
<html ng-app>
  <head>
    <script src="C:\Users\Ольга\Documents\Visual Studio 2010\Projects\курсач Тригуб\js.html"></script>
  </head>
  <body>
    <div>
      <label>Name:</label>
      <input type="text" ng-model="yourName" placeholder="Enter a name here">
      <hr>
      <h1>Hello {{yourName}}!</h1>
    </div>

</div>
    <!--область действия контроллера-->
        <div ng-controller='myController'>
 
         <table class='table'>
             <thead>
                 <tr>
                     <th>Номер зачетки</th>
                     <th>Фамилия</th>
                     <th>Имя</th>
                     <th>Отчество</th>
                 </tr>
             </thead>
             <tbody>
                 <tr ng-repeat='student in students'>
                     <td>{{student.[Номер зачетки]}}</td>
                     <td>{{student.[Фамилия]}}</td>
                     <td>{{student.[Имя]}}</td>
                     <td>{{student.[Отчество]}}</td>
                 </tr>
             </tbody>   
         </table>
    
        </div>
 
    <!--подключение фреймворка AngularJS-->
    <script src="angular/angular.min.js"></script>
    <!--подключение скрипта-->
    <script src='script.js'></script>
  </body>
</html>

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.