コードが機能しない

RKh

このangularJSコードの問題は何ですか?動作していません。

この行にはいくつかの問題があります。

You are entering: {{student.fullName()}}

完全なコードは次のとおりです。

<html>

<head>
<script type = "javascript"  src = "http://ajax.googleapis.com/ajax/libs/angularjs/1.3.14/angular.min.js">
</script>

</head>

<body>
<div ng-app = "mainApp" ng-controller = "studentController">
         Enter first name: <input type = "text" ng-model = "student.firstName"><br><br>
         Enter last name: <input type = "text" ng-model = "student.lastName"><br>
         <br>

         You are entering: {{student.fullName()}}
</div>


      <script>
         var mainApp = angular.module("mainApp", []);

         mainApp.controller('studentController', function($scope) {
            $scope.student = {
               firstName: "ABCD",
               lastName: "EFGH",

               fullName: function() {
                  var studentObject;
                  studentObject = $scope.student;
                  return studentObject.firstName + " " + studentObject.lastName;
               }
            }
         });
      </script>
</body>
</html>
Tarek Salah uddin Mahmud

使用の参照中にエラーが発生しました

<script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>

この記事はインターネットから収集されたものであり、転載の際にはソースを示してください。

侵害の場合は、連絡してください[email protected]

編集
0

コメントを追加

0

関連記事