AngularJS实现表单元素值绑定操作示例
程序员文章站
2022-06-24 17:23:38
本文实例讲述了angularjs实现表单元素值绑定操作。分享给大家供大家参考,具体如下:
ng-disabled:绑定控件的disabled属性
ng-show:显示...
本文实例讲述了angularjs实现表单元素值绑定操作。分享给大家供大家参考,具体如下:
ng-disabled
:绑定控件的disabled属性 ng-show
:显示或者隐藏元素:ms-visible ng-hide
:和ng-show的功能恰好相反
css内容:
div.d1{ width: 20px; height: 20px; background-color: pink; } div.d2{ width: 20px; height: 20px; background-color: black; }
html正文:
<body ng-app="myapp" ng-controller="myctr"> <div> 请输入:<input type="text" placeholder="....." ng-disabled="flag">{{flag}}<br> 切换输入:<input type="button" value="switch input" ng-click="switchinput();"> </div> <hr ng-init="checkvalue=false"> input:<input type="text" ng-disabled="checkvalue">{{checkvalue}}<br> <input type="checkbox" ng-model="checkvalue">stop input <!-- 注意ng-model不能作用于单选框 --> <hr> <p>ng-show:flag</p> <div class="d1" ng-show="flag"></div> <p>ng-hide:checkvalue</p> <div class="d2" ng-hide="checkvalue"></div> <hr> <!-- ng-click:后面可以直接跟表达式,表达式会直接执行,变量不支持++操作 --> <input type="button" ng-click="count = count + 1" value="加1">:{{count}}
javascript操作代码:
var app = angular.module('myapp', []); app.controller('myctr', function($scope) { $scope.flag=false; $scope.count=0; $scope.switchinput=function(){ $scope.flag=!$scope.flag; }; });
效果:
更多关于angularjs相关内容感兴趣的读者可查看本站专题:《angularjs指令操作技巧总结》、《angularjs入门与进阶教程》及《angularjs mvc架构总结》
希望本文所述对大家angularjs程序设计有所帮助。