Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • How to make simple calculator with the help of Angulor JS

    • 0
    • 3
    • 4
    • 1
    • 0
    • 0
    • 0
    • 0
    • 366
    Comment on it

    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.

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: