一,頁面上有一個checkbox和一個文本框。切換checkbox能對文本框輸入文本與否: <input type="checkbox" ng-model="ckSwitch" /> <input id="Text1" type="text" ng-disabled="!ckSwitch" ng-m ...
一,頁面上有一個checkbox和一個文本框。切換checkbox能對文本框輸入文本與否:
<input type="checkbox" ng-model="ckSwitch" /> <input id="Text1" type="text" ng-disabled="!ckSwitch" ng-model="textValue" />Html Code
二,現想把文本框一開是隱藏時,當點擊checkbox為真時,文本框才顯示:
<input type="checkbox" ng-model="ck1" /> <input type="text" ng-hide="!ck1" ng-model="text1" />Html Code