Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这是我的html标签:
<input class="editable-input" ng-model="ac.accesses.permision.alias" ng-disabled="true">
但输入标签不会禁用。
ng-disabled如果您错过了输入,也可以正常工作type
ng-disabled
type
工作演示
<input type="text" class="editable-input" ng-model="ac.accesses.permision.alias" ng-disabled="true">
type="text"您必须插入input标签或删除该类。
type="text"
input