|
|
|
สอบถามangularครับ ต้องการส่งค่าจาก textboxไปยัง angular ครับ ไม่ทราบว่าจะเขียนอย่างไรครับ |
|
|
|
|
|
|
|
Code
<!DOCTYPE html>
<html lang="en">
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<body>
<div ng-app="myApp" ng-controller="formCtrl">
<form novalidate>
<input type="text" ng-model="num1" ng-blur="sum()" ><br>
<input type="text" ng-model="num2" ng-blur="sum()" ><br>
<input type="text" ng-disabled="true" ng-model="result">
</form>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('formCtrl', function($scope) {
$scope.sum = function() {
$scope.result = $scope.num1+ $scope.num2;
};
});
</script>
</body>
</html>
|
|
|
|
|
Date :
2018-01-26 14:58:40 |
By :
OOP |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|