码迷,mamicode.com
首页 > Web开发 > 详细

使用angular.js获取form表单中的信息

时间:2016-10-02 21:58:46      阅读:322      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>注册</title>
    <script src="./node_modules/angular/angular.js"></script>
</head>
<body ng-app="s1.app">
<div>
    <div>
        <label for="ipt_name">用户名</label>
        <input ng-model="data.name" type="text" id="ipt_name">
        <span ng-bind="data.errorMsg.name"></span>
    </div>
    <div>
        <label for="ipt_password">密码</label>
        <input ng-model="data.password" type="password" id="ipt_password">
    </div>
    <div>
        <label for="ipt_age">年龄</label>
        <input ng-model="data.age" type="number" id="ipt_age">
    </div>
    <div>
        <label for="ipt_phone">手机</label>
        <input ng-model="data.phone" type="tel" id="ipt_phone">
    </div>
    <div>
        <button ng-click="actions.submit()">注册</button>
    </div>
</div>
<script>
    // app是application的缩写,application是应用程序的意思
    var app = angular.module(‘s1.app‘, []);
    app.run(function ($rootScope) {
        // data是数据的意思
        var data = $rootScope.data = {};
        data.name = ‘‘;
        data.password = ‘‘;
        data.age = 0;
        data.phone = ‘‘;
        data.errorMsg = {};

        // actions是行为的意思
        var actions = $rootScope.actions = {};
        actions.submit = function () {
            var userinfo = {};
            if(data.name == ‘‘){
                data.errorMsg.name = ‘用户名不能为空‘;
                return;
            }
            userinfo.name = data.name;
            userinfo.password = data.password;
            userinfo.age = data.age;
            userinfo.phone = data.phone;
            // 从数据对象上拿到我们想要的数据,然后做提交(现在我们没有服务器,只是log一下)
            console.log(userinfo);
        }
    })

</script>
</body>
</html>

 

使用angular.js获取form表单中的信息

标签:

原文地址:http://www.cnblogs.com/lsy0403/p/5927990.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!