我正在尝试将bootstrap工具提示添加到数据表搜索框中,我似乎无法找到任何帮助 这是我尝试过的,但它不起作用:
$('.dataTables_filter input').attr('title', 'Type here to search in the table');
答案 0 :(得分:0)
也许这样的事情会起作用:
$('.dataTables_filter input').attr('data-toggle', 'tooltip')
.attr('data-placement', 'top')
.attr('title', 'Type here to search in the table')
.tooltip();
快速说明,Bootstrap 4取决于Popper.js所以你必须包含它以确保一切正常。 https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js