<!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>
时间: 2024-10-13 23:56:30