AngularJS:使用ng-class更改title属性?

时间:2015-05-08 14:24:41

标签: html angularjs ng-class

我目前在网页上更新了图片,具体取决于用户从下拉菜单中选择的其他内容。

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<p>Example</p>

正如您所看到的标题所示&#34; test&#34;,但我希望这可以为当前显示此图像的任何图像说明不同的消息。使用角度,实现这个目标的最佳方式是什么?

1 个答案:

答案 0 :(得分:0)

<td align="center"><span class="glyphicon" title={{mymsg}} ng-class="{'glyphicon-ok' : user.StatusID == 1, 'glyphicon-remove' : user.StatusID == 2, 'glyphicon-lock' : user.StatusID == 3}"></span></td>

controller.js:

$scope.mymsg="Hello How are you";