-1

我想要带有鼠标光标的引导工具提示。是否可以在 angularjs 中做到这一点。如果不是,那将是什么替代方案。

4

1 回答 1

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: 使用tooltipat <a>html 标签显示工具提示。

<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>

这样就完成了。请查看现场示例

于 2016-01-29T07:52:54.623 回答