EasyUI之toolTip

<a class="easyui-tooltip" title="提示框" href="http://www.baidu.com">提示框</a>
<a id="toolTip" href="#">超链接</a>
// 提示框
    $('#toolTip').tooltip({
        position : 'right',        //提示位置,默认bottom,left、right、top
        content : '提示内容',        // 提示内容
        trackMouse : true,        //提示内容随鼠标移动,默认false
        deltaX : 100,            //水平方向提示框位置,默认为0
        deltaY : 100,            // 垂直方向提示位置,默认0
        showEvent : 'click',    // 显示事件
        hideEvent : 'dblclick',    // 隐藏事件
        showDelay : 1000,         // 延迟显示
        hideDelay : 2000        // 延迟隐藏
    });
原文地址:https://www.cnblogs.com/alphajuns/p/11933081.html