0

私はこれを機能させようとしていますが、それはただ欲しいです...

アラートは正しい内容を警告します..何かアイデアはありますか?

    function initToolTip() {
        $('.product').qtip({
            content: $(this).find('.product-info').html(),
            style: 'ui-tooltip-shadow'
         });
         $('.product').on('hover',function(){
            //alert($(this).find('.product-info').html());
         });
    }
4

1 に答える 1

1

ここ

$(this)最初のケースのコンテキストに はありません.product..

$(this)ツールチップ オブジェクトを参照します。

カスタム関数を使用してそれを取得します..

$('.product').qtip({
            content: {
               text: function(api) {
                return $(this).find('.product-info').html() ;
               }
            },
            style: 'ui-tooltip-shadow'
         });
于 2012-10-17T21:15:30.570 に答える