Q1)我正在使用来自 twitter bootstrap 的工具提示。我只是注意到,当使用 ajax 添加内容时它不起作用。经过大量谷歌搜索后,该解决方案似乎在 ajax 请求后触发了工具提示。但就我而言,这是不可能的,因为我依赖于框架的内置 ajax API。还有其他解决方法吗?
$('.tootip').tooltip({placement:'left'});
Q2) 在 jQuery on() 文档中,用法被提及为
$(document).on(event, selector, function(){ //do stuff here })
所以这是我必须做的吗?
$(document).on('ready', '.tootip', tooltip({placement:'left'}));
但它不起作用。