我有一个工作版本的工具提示(jQuery 工具 - http://flowplayer.org/tools/demos/tooltip/index.html),
jQuery(document).ready(function() {
jQuery('.more_info').each(function(){
jQuery(this).tooltip({
effect: 'slide',
offset: [10, 570],
predelay: 100,
position: "bottom left"}).dynamic( {
bottom: {
direction: 'down',
bounce: true
}
});
});
});
加载 ajax 后,工具提示不再工作,因为脚本已经加载,我尝试了论坛http://flowplayer.org/tools/forum/30/37281的解决方案,但没有工作,或者没有正确实施
这是代码:
jQuery(document).ready(function() {
jQuery('.more_info').each(function(){
jQuery(this).not('.tt_init').tooltip({
effect: 'slide',
offset: [10, 570],
predelay: 100,
position: "bottom left"}).dynamic( {
bottom: {
direction: 'down',
bounce: true
}
});
jQuery(this).not('.tt_init').addClass('tt_init');
});
});
什么都没有......我做错了什么,谢谢你的帮助;),对不起我的英语不好