zoukankan      html  css  js  c++  java
  • 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        // 延迟隐藏
        });
  • 相关阅读:
    二分与三分
    NOIP应试技巧
    数论
    并差集
    最短路
    图的遍历

    最小生成树
    树状数组
    线段树
  • 原文地址:https://www.cnblogs.com/alphajuns/p/11933081.html
Copyright © 2011-2022 走看看