Rumah > Artikel > hujung hadapan web > AngularJS表单元素值实现绑定操作详解
本文主要介绍了AngularJS实现表单元素值绑定操作,结合具体实例形式分析了AngularJS针对表单元素属性相关操作技巧,需要的朋友可以参考下,希望能帮助到大家。
ng-disabled
:绑定控件的disabled属性 ng-show
:显示或者隐藏元素:ms-visible ng-hide
:和ng-show的功能恰好相反
css内容:
p.d1{ width: 20px; height: 20px; background-color: pink; } p.d2{ width: 20px; height: 20px; background-color: black; }
HTML正文:
<body ng-app="myApp" ng-controller="myctr"> <p> 请输入:<input type="text" placeholder="....." ng-disabled="flag">{{flag}}<br> 切换输入:<input type="button" value="switch input" ng-click="switchInput();"> </p> <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> <p class="d1" ng-show="flag"></p> <p>ng-hide:checkValue</p> <p class="d2" ng-hide="checkValue"></p> <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; }; });
效果:
相关推荐:
javascript中的in_array()在数组中查找元素值
Atas ialah kandungan terperinci AngularJS表单元素值实现绑定操作详解. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!