0
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<body>
<div ng-app="myApp" ng-controller="myCtrl2" ng-init="person = new Person('John','Doe')">
First Name: <input type="text" ng-model="person.firstName"><br>
Last Name: <input type="text" ng-model="person.lastName"><br>
<br>
Full Name: {{person.sayGreeting('1')}}
</div>
<script>
var app = angular.module('myApp', []);
app.controller('myCtrl2', function ($scope) {
\t
\t \t function Person(fName,lName){
\t \t \t this.firstName = fName;
\t \t \t \t this.lastName = lName;
\t \t \t \t this.sayGreeting = function(lan){
\t \t \t \t \t if(lan=="1") return '1 : ' + this.firstName+' '+this.lastName;
\t \t \t \t
\t \t \t \t \t else return '2: ' + this.firstName+' '+this.lastName;
\t \t \t \t
\t \t \t \t }
\t \t }
\t }
});
</script>
</body>
</html>
あなたのコードの代わりに、スクリーンショットをリンクを投稿した場合、あなたの問題が何であるかを見つけるためにはるかに簡単になります。 – zgue
私を助けてください。 –