首页 > 网站 > WEB开发 > 正文

AngularJs控制器说明(一)

2024-04-27 15:10:02
字体:
来源:转载
供稿:网友

一.控制器使用示例ng-controller

<body ng-app='module' ng-controller="myCtrl">        请选择性别:        <select name="sex" ng-model='sex' >             <option value="">请选择</option>            <option value="1">男</option>            <option value="2">女</option>        </select>        <button type="" ng-click="alter();">修改</button>    </form>js代码:

var app= angular.module('module', []);app.controller('myCtrl',function($scope){    $scope.sex="1"; //特别说明,此处指定的为字符串,如果是number类型则绑定不成功    console.info($scope);    $scope.alter=function(){        $scope.sex="2";        console.info($scope);    }});app.controller('test',function($scope){ console.info(33); //测试代码});特别说明:

1.app.controller('test',function(){}),如果控制器不存在,angularjs不会抛出异常,内部代码也不会执行。

更多:

Angular 1.6提示$http.get(...).success is not a function

AngularJS动画(二)

AngularJs directive-controller实例


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表