Twitter Bootstrap 工具提示在页面更改时中断,因为 $(document).ready

Twitter Bootstrap tooltips break on page change because of $(document).ready

本文关键字:因为 document ready 中断 工具提示 Bootstrap Twitter      更新时间:2023-09-26

因为jQuery $(document).ready只触发一次。我的 Twitter 引导工具提示在更改页面时中断。

我目前使用下面这样简单的东西来初始化我的工具提示:

$(function () {
// for tooltips
  $('body').tooltip({
    selector: '[rel=tooltip]'
  });
});

有没有更好的方法可以解决这个问题?

找到了答案!

var ready;
ready = function() {
  ...your javascript goes here...
};
$(document).ready(ready);
$(document).on('page:load', ready);