哇,这个可以轻松实现输入值就按钮可点击,输入框没有值则不可点击的状态呀
看代码
<!doctype html> <html ng-app=""> <head> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.0-rc.3/angular.js"></script> </head> <body> <input type="text" ng-model="someProperty" placeholder="Type to Enable"> <button ng-model="button" ng-disabled="!someProperty">A Button</button> </body> </html>
so easy~~~这个功能实现的,就是比如像就是提交表单的时候的需求,就是要是你的输入框没有值,那个按钮就disabled状态~~~