21
我正在嘗試做一些計算,但只要輸入金額就會完成。我只是希望這發生在點擊按鈕而不是自動。單擊按鈕時的Angularjs動作
我迄今所做的:
<!DOCTYPE html>
<html ng-app="myAppModule">
<head>
<title>Angular JS - programming-free.com</title>
<link href="https://dl.dropbox.com/u/96099766/DetailModalExample/bootstrap.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="lib/angularjs.min.js"></script>
</head>
<body>
<div ng-controller="myAppController" style="text-align:center">
<p style="font-size:28px;">
Enter Quantity:
<input type="text" ng-model="quantity"/>
</p>
<h2>Total Cost: Rs.{{calculateval(quantity,10)}}</h2>
</div>
<script type="text/javascript">
var myAppModule = angular.module('myAppModule', []);
myAppModule.controller('myAppController', function($scope,calculateService) {
$scope.quantity=1;
$scope.calculateval = function(xval,yval) {
return calculateService.calculate(xval,yval);
}
});
// Service
myAppModule.factory('calculateService', function(){
return {
calculate: function(xval,yval){
return xval*yval;
}
}
});
</script>
</body>
</html>
Tnkyou somuch快速回復。多一點小小的幫助。如果我想執行相同的任務,以表格格式根據在一個文本框中輸入的值計算不同費率的值,比如說,像這樣的一些東西http://www.investing.com/forex-tools/fibonacci - 計算器 –
@AbhishekKumar沒問題。我建議你創建一個新的問題,並準確解釋你需要什麼,因爲這是一個非常不同的要求。發佈一個新問題,並顯示預期輸入和輸出的示例,以及您嘗試的任何代碼,然後有人會幫助您。 –