ツールチップの作業バージョンがあります (jQuery Tools - 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 がロードされた後、スクリプトが既にロードされているため、ツールチップが機能しなくなりました 。
ここにコードがあります:
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');
});
});
そして何も...私は何か間違ったことをしています、助けてくれてありがとう;)、私の悪い英語でごめんなさい