Qtip chage onlick元素

时间:2015-04-29 03:23:36

标签: qtip

我需要在onclick事件上更改工具提示内容。

我正在使用tooltip 1.0.0版本

// will generate the html elements for tooltip with expand text
$(document).ready(function() 
{
$('.tooltip[tooltip]').each(function()
{

  $(this).qtip({

    content: $(this).attr('tooltip'),

    show: 'mouseover',
    hide: 'mouseout',
    style: {
        name: "dark",
        width: { max: 550, min: 100 },
        border: {
            width: 1,
            radius: 3
         }
    }

  });
});
});

function toggle(aRow) {                
   // logic to toggle the expand and collapse

   // Here when content toggled I need to change tooltip content as well.. Can you help me on doing this?
}       

<table>
    <tr onlick="toggle(this);" class="tooltip" tooltip="Expand"> Apple .... </tr> //onclick will expand the value
</table>

在鼠标点击时,tr标签的事件内容将发生变化,我们需要相应地更改工具提示。请帮帮我。

0 个答案:

没有答案