哇,這個可以輕鬆實現輸入值就按鈕可點擊,輸入框沒有值則不可點擊的狀態呀 看代碼 so easy~~~這個功能實現的,就是比如像就是提交表單的時候的需求,就是要是你的輸入框沒有值,那個按鈕就disabled狀態~~~ ...
哇,這個可以輕鬆實現輸入值就按鈕可點擊,輸入框沒有值則不可點擊的狀態呀
看代碼
<!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狀態~~~