为Home控制器下的Index添加Scrip代码,手动敲入script,按Tab键,页面自动补齐<script></script>
1 <script> 2 3 //增加选项卡 4 function addTab(subtitle, url) { 5 if (!$("#mainTab").tabs(‘exists‘, subtitle)) { //若选项卡不存在,生成新的选项卡 6 var con = ‘<iframe frameborder="0" scrolling="auto" style="width:99.5%; height:99%" src="‘ + url + ‘"></iframe>‘; 7 $("#mainTab").tabs(‘add‘, { 8 title: subtitle, 9 content: con, 10 closable: true, 11 loadingMessage: ‘加载中......‘ 12 }); 13 } else { //若选项卡已存在,选择该选项卡 14 $("#mainTab").tabs(‘select‘, subtitle); 15 $("#tab_menu-tabrefresh").trigger("click"); 16 } 17 } 18 19 //刷新选项卡 20 function refreshTab() { 21 var index = $(‘#mainTab‘).tabs(‘getTabIndex‘, $(‘#mainTab‘).tabs(‘getSelected‘)); 22 if (index != -1) { 23 var tab = $(‘#mainTab‘).tabs(‘getTab‘, index); 24 $(‘#mainTab‘).tabs(‘update‘, { 25 tab: tab, 26 options: { 27 selected: true 28 } 29 }); 30 } 31 } 32 33 //关闭选项卡 34 function closeTab() { 35 $(‘.tabs-inner span‘).each(function (i, n) { 36 var t = $(n).text(); 37 if (t != ‘‘) { 38 if (t != "我的主页") { 39 $(‘#mainTab‘).tabs(‘close‘, t); 40 } 41 } 42 }); 43 } 44 45 </script>