about 10 years ago
This Script will helpful to make a simple 'addition' 'subtraction' 'multiplication' 'division' calculator with the help of Angular JS.
<!DOCTYPE html > <html> <head> <title>Angulor Calculator</title> <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js"></script> <link rel="stylesheet" type="text/css" href="css/style.css" media="all"> </head> <body> <div ng-app> <fieldset> <h2>Calculator</h2> <dl> <dt>First No :</dt> <dd><input type="text" ng-model="first" /></dd> <dt>Second No :</dt> <dd><input type="text" ng-model="second" /></dd> <div class="clr"></div> </dl> <div class="operations"> <button ng-click="total = first -- second">Add</button> //For addition <button ng-click="total = first - second">Sub</button> //For subtraction <button ng-click="total = first * second">Mul</button> //For multiplication <button ng-click="total = first / second">Div</button> //For division </div> <label class="result">Result: {{total}}</label> </fieldset> </div> </body> </html>
I hope this script is helpful for you to understand a simple angular JS program.
Starting with Chrome version 45, NPAPI is no longer supported for Google Chrome. For more information, see Chrome and NPAPI (blog.chromium.org).
Firefox and Microsoft Internet Explorer are recommended browsers for websites using java applets.
Chrome Version Support
Are you sure, you want to delete this comment?
Sign up using
0 Comment(s)