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 回答