我想用鼠标光标启动工具提示。是否有可能在angularjs中做到这一点。如果没有,那么将是替代方案。
答案 0 :(得分:1)
是的,让我通过示例解释一下,如何使用angularjs + Bootstrap显示工具提示。
<强>控制器:强>
var myApp = angular.module("myApp", []);
function MyCtrl($scope) {
$scope.items = [{ name: "item 01", tooltip: "This is item 01 tooltip!"},
{ name: "item 02", tooltip: "This is item 02 tooltip!"}];
console.log("MyCtrl");
}
myApp.directive('tooltip', function () {
return {
restrict:'A',
link: function(scope, element, attrs)
{
$(element)
.attr('title',scope.$eval(attrs.tooltip))
.tooltip({placement: "right"});
}
}
})
<强> HTML:强>
使用tooltip
html标记处的<a>
来显示工具提示。
<div ng-app="myApp">
<div ng-controller="MyCtrl">
<li ng-repeat="item in items" >
<a rel="tooltip" tooltip="item.tooltip">{{item.name}}</a>
</li>
</div>
</div>
完成了。请参阅live example。