hello angular
hello angular
hello angular
2014-11-23
<script type="text/javascript"> var loginModule = angular.module("LonginApp", []); loginModule.controller("UserinfoCtrl", function ($scope) { $scope.userinfo = { email: "zhouhao9558@hotmail.com", password: "dsafsaasdf", autoLogin: true }; $scope.getFormData = function () { console.log($scope.userinfo); }; $scope.setFormData = function () { $scope.userinfo = { email: "shawock232@hotmail.com", password: "123456", autoLogin: false }; }; $scope.resetFormData = function () { $scope.userinfo = { email: "zhouhao9558@hotmail.com", password: "dsafsaasdf", autoLogin: true }; }; }); </script>
举报