如何在元素之前添加工具提示?

时间:2017-10-11 08:14:57

标签: javascript jquery twitter-bootstrap-3

我在将元素添加到:before之前遇到了问题。例如,我的输入变为错误,<div class="form-group has-error">内的:before元素有图标。我希望在元素之前添加jQuery工具提示。

这是我的代码:

$('body').tooltip({
    selector: '[data-input].has-error:before',
    animation: true,
    container: 'body',
    placement: 'bottom',
    title: 'error message'
});

或者这个:

$('[data-input].has-error:before').on('hover', function () {
    $(this).tooltip({
        animation: true,
        container: 'body',
        placement: 'bottom',
        title: 'error message'
    });
});

有什么想法吗?

0 个答案:

没有答案