input标签中有一个id,我怎么总angularjs取得这个id的值呢
2条回答 默认 最新
danielinbiti 2016-03-31 02:37关注<body onload='test()'> <div ng-app="myApp" ng-controller="formCtrl"> <input type="text" id='aaaa' ng-model="user.firstName"><br> <button ng-click="showvalue()">获取</button> </div> <script> function test(){ alert(document.getElementById('aaaa').value); } var app = angular.module('myApp', []); app.controller('formCtrl', function($scope) { $scope.master = {firstName:"John1", lastName:"Doe"}; $scope.showvalue = function() { alert($scope.user.firstName); }; $scope.user = angular.copy($scope.master); }); </script>解决 无用评论 打赏 举报