어떻게 angularjs를 사용하여 단추 이벤트를 실현합니까

2440 단어
<!DOCTYPE html>
<html ng-app="myApp">
<head>
    <title>angularjs-setValue</title>
</head>
<body ng-controller="body">
    <input type="text" name="input1" ng-model="input1"><br />
    <input type="text" name="input2" ng-model="input2"><br />
    <input type="button" ng-click="clickEvent()" value=" ">
    <script type="text/javascript" src="js/angular.min.js"></script>
    <script type="text/javascript">
    var myApp = angular.module('myApp',[]);
    myApp.controller('body', function($scope){
        $scope.clickEvent = function() {
            alert("input1:" + $scope.input1);
            alert("input2:" + $scope.input2);
        }
    });
    </script>
</body>
</html>

좋은 웹페이지 즐겨찾기