為jQuery-easyui的tab組件添加右鍵菜單功能

來源:互聯網
上載者:User

標籤:als   ret   bin   雙擊   右鍵   右擊   ext   .text   實現   

加入了右擊TAB選項卡時顯示關閉的操作功能表

具體實現代碼:

右鍵菜單 HTML:

<div id="mm" class="easyui-menu" style="width:150px;">
  <div id="mm-tabclose">關閉</div>
  <div id="mm-tabcloseall">全部關閉</div>
  <div id="mm-tabcloseother">除此之外全部關閉</div>
  <div class="menu-sep"></div>
  <div id="mm-tabcloseright">當前頁右側全部關閉</div>
  <div id="mm-tabcloseleft">當前頁左側全部關閉</div>
</div>

下面是js代碼:

$(function(){
  tabClose();
  tabCloseEven();
})

function tabClose()
{
  /*雙擊關閉TAB選項卡*/
  $(".tabs-inner").dblclick(function(){
    var subtitle = $(this).children("span").text();
    $(‘#tabs‘).tabs(‘close‘,subtitle);
  });

  $(".tabs-inner").bind(‘contextmenu‘,function(e){
    $(‘#mm‘).menu(‘show‘, {
      left: e.pageX,
      top: e.pageY,
    });

    var subtitle =$(this).children("span").text();
    $(‘#mm‘).data("currtab",subtitle);

    return false;
  });
}


//綁定右鍵菜單事件
function tabCloseEven(){
  //關閉當前
  $(‘#mm-tabclose‘).click(function(){
    var currtab_title = $(‘#mm‘).data("currtab");
    $(‘#tabs‘).tabs(‘close‘,currtab_title);
  });
  

  //全部關閉
  $(‘#mm-tabcloseall‘).click(function(){
    $(‘.tabs-inner span‘).each(function(i,n){
      var t = $(n).text();
      $(‘#tabs‘).tabs(‘close‘,t);
    });
  });
  

  //關閉除當前之外的TAB
  $(‘#mm-tabcloseother‘).click(function(){
    var currtab_title = $(‘#mm‘).data("currtab");
    $(‘.tabs-inner span‘).each(function(i,n){
      var t = $(n).text();
      if(t!=currtab_title)
      $(‘#tabs‘).tabs(‘close‘,t);
    });
  });

  //關閉當前右側的TAB
  $(‘#mm-tabcloseright‘).click(function(){
    var nextall = $(‘.tabs-selected‘).nextAll();
    if(nextall.length==0){
      //msgShow(‘系統提示‘,‘後邊沒有啦~~‘,‘error‘);
      alert(‘後邊沒有啦~~‘);
      return false;
    }
    

    nextall.each(function(i,n){
      var t=$(‘a:eq(0) span‘,$(n)).text();
      $(‘#tabs‘).tabs(‘close‘,t);
    });
    return false;
  });

  //關閉當前左側的TAB
  $(‘#mm-tabcloseleft‘).click(function(){
    var prevall = $(‘.tabs-selected‘).prevAll();
    if(prevall.length==0){
      alert(‘到頭了,前邊沒有啦~~‘);
      return false;
    }
    prevall.each(function(i,n){
      var t=$(‘a:eq(0) span‘,$(n)).text();
      $(‘#tabs‘).tabs(‘close‘,t);
    });
    return false;
  });
}

為jQuery-easyui的tab組件添加右鍵菜單功能

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.