我在将元素添加到: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'
});
});
有什么想法吗?