2

我改变了 bootstrab.js (只是用悬停替换了点击):

  $(function () {
    $('body').on('hover.tab.data-api', '[data-toggle="tab"], [data-toggle="pill"]', function (e) {
      e.preventDefault()
      $(this).tab('show')
    })
  })

现在,当您没有将鼠标悬停在选项卡或内容上时,我希望内容选项卡关闭。

我该怎么做呢?

4

1 回答 1

2

更新:类似于下面的内容

var timer;

$('tab_element').hover(
    function(){ //hover
        // clear timer first
        clearTimeout(timer);
        // then show the content
    },
    function(){ //unhovered, 1000 milliseconds
        // set a timer to call the hide function
        timer = setTimeout("hide_function", 1000);
    }
);

$('content_tab_here').bind('mouseleave', function(){
    // hide it, you can set a timer here too if you want
});

这是关于计时器的文档http://www.w3schools.com/js/js_timing.asp 这里有很多选项,但这会让你开始,我使用的 jquery 是老派,所以如果你使用最新版本的 jquery 你可以相应地更改代码。我不想为你写出所有东西,因为那样你就不会学习,而且我没有那么多时间,因为我在工作。祝你好运。

于 2012-05-10T17:17:03.633 回答