在初始化之前无法在工具提示上调用方法

时间:2013-11-14 05:16:10

标签: jquery twitter-bootstrap jquery-ui compiler-errors dynamic-data

我正在使用jQuery工具提示来创建动态行(可以是10行/更多行)

工具提示正在正确显示但关闭不正确。

下面给出了错误,

Error: cannot call methods on tooltip prior to initialization; attempted to call method 'close'

throw new Error( msg );

while(m < 10){

  .......................................
  .......................................

  if(data =="EXIST")
  {
    display_tp_tooltip(m);
    $("#tp_no"+m).val("");
  }
  else
  {
    display_tp_tooltip_close(m);
  }
}

function display_tp_tooltip(m)
{
   $("#tp_no"+m).tooltip();
   $("#tp_no"+m).tooltip({
        open: function (e, o) {
        o.tooltip.animate({ top: o.tooltip.position().top + 10 }, "fast" );
        $(o.tooltip).mouseover(function (e) {
            $("#tp_no"+m).tooltip('close');
        });
        $(o.tooltip).mouseout(function (e) {});
        },

        position: {
        my: "center bottom-20",
        at: "center top",
        using: function( position, feedback ) {
            $( this ).css( position );
            $( "<div>" )
            .addClass( "arrow" )
            .addClass( feedback.vertical )
            .addClass( feedback.horizontal )
            .append($('<style>.ui-tooltip,.arrow:after { background:red; }</style>'))
            .appendTo( this );
          }
        },
        content: function() { return cellTpNoTooltipContent()},
        close: function (e, o) {},
        show: {
          duration: 800
        }

   });

   $("#tp_no"+m).tooltip('open');
       setTimeout(function () {
       $(this).tooltip('close'); //close the tooltip
       }, 3000);
}

function cellTpNoTooltipContent()
{
  var rval = "T.P No. is exist";
  return rval;
}

function display_tp_tooltip_close(m)
{
  $("#tp_no"+m).tooltip("close");
}

我该如何解决?请帮帮我。

6 个答案:

答案 0 :(得分:10)

我发现在我的jquery-ui.js之前声明bootstrap.js导致了问题。 确保在bootstrap.js之前声明了jquery-ui.js。

答案 1 :(得分:3)

在bootstrap.js之前声明jquery-ui.js

答案 2 :(得分:2)

您需要防止jQuery UI库覆盖jQuery.fn.tooltip

因此在加载jQuery UI库之前缓存此值,然后再将其还原:

<script>
    let _tooltip = jQuery.fn.tooltip; // <--- Cache this
</script>
<script src="/path/to/jquery-ui.min.js"></script> <!-- load jQuery UI -->
<script>
    jQuery.fn.tooltip = _tooltip; // <--- Then restore it here
</script>

答案 3 :(得分:0)

我总是在调用close方法等之前检查元素是否存在。

如果($(myelem)。length&gt; -1)做某事

答案 4 :(得分:0)

您无法在窗口小部件初始化之前通过工具提示窗口小部件调用方法(例如ggplot(sumdf) + geom_line(aes(x = time, y = shape, col = gender)) ),方法是调用.tooltip('close').tooltip()

您可以通过测试DOM元素是工具提示小部件的实例来阻止此错误:

.tooltip({ })

另一种选择是将调用移到if($("#tp_no"+m).is(':ui-tooltip')){ $("#tp_no"+m).tooltip("close"); } 作为$("#tp_no"+m).tooltip();循环中的第一个内容,以确保if语句所采用的分支,该元素将是工具提示小部件的实例< / p>

答案 5 :(得分:0)

在bootstrap.js之前声明jquery-ui.js也解决了我的问题

TypeError:elem.getClientRects不是jQuery.fn.init.offset的函数