Home  >  Q&A  >  body text

angular.js - angular 怎么实现点击事件之后再进行数据绑定?

点击确定按钮之后,再将编辑的数据展示在页面上,用angular该怎么实现
`your name: <input type="text" ng-model="yourname"/>
<button>确定</button>
Hello {{yourname}}!`

PHP中文网PHP中文网2714 days ago593

reply all(2)I'll reply

  • 黄舟

    黄舟2017-05-15 16:57:04

    Then your code should look like this:

    var model = angular.module('demo', []);
    
    model.controller('DemoCtrl', function($scope){
        $scope.user = {};
        $scope.username = '';
        
        $scope.confirm = function(){
            $scope.user.username = $scope.username;
            $scope.username = '';
        };
    });
    your name: <input type="text" ng-model="username"/>
    <button ng-click="confirm()">确定</button>
    Hello {{ user.username }}!

    reply
    0
  • 天蓬老师

    天蓬老师2017-05-15 16:57:04

    You can change ng-model to name
    hello{{confirmNmae}}
    Achieve value assignment in the controller

    reply
    0
  • Cancelreply