我需要为链接分配动态html标记内容。 现在我有两个链接,其中一个禁用。但是我需要通过调用Angular 1代码中的函数来动态指定它是否被禁用。
<a href="http://example.com" onclick="saveOnNavigation()">The first click on this link will be stopped; the second one will be allowed.</a>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
请欣赏任何帮助。
答案 0 :(得分:0)
您需要使用ng-disabled
:
<link rel="stylesheet" href="css/blue.css" title="blue"
ng-disabled="{condition}" />
答案 1 :(得分:0)
您需要使用指令ng-disabled
。您可以在AngularJS的official documentation上了解有关此指令的更多信息。
您案例的实施示例:
<link rel="stylesheet" href="css/blue.css" title="blue" ng-disabled="expression" />
<link rel="stylesheet" href="css/red.css" title="red" ng-disabled="expression" />