私はこれを機能させようとしていますが、それはただ欲しいです...
アラートは正しい内容を警告します..何かアイデアはありますか?
function initToolTip() {
$('.product').qtip({
content: $(this).find('.product-info').html(),
style: 'ui-tooltip-shadow'
});
$('.product').on('hover',function(){
//alert($(this).find('.product-info').html());
});
}