<div class="page-tabs-content" style="margin-left: 0px;"> <a class="menuTab" href="javascript:;" data-id="?M=System&C=Welcome&A=home">数据统计</a><a href="javascript:;" class="menuTab" data-id="?M=System&C=Softs&A=search&cate_id=2">手机应用 <i class="ft ftsucai-close-1"></i></a><a href="javascript:;" class="active menuTab" data-id="?M=System&C=Softs&A=search&cate_id=3">手机游戏 <i class="ft ftsucai-close-1"></i></a></div>如何控制关闭除当前之外的TAB
时间: 2023-10-07 08:06:53 浏览: 89
可以使用以下代码来控制关闭除当前之外的TAB:
```
$('.page-tabs-content').on('click', '.menuTab', function () {
var id = $(this).data('id');
$('.menuTab').removeClass('active');
$(this).addClass('active');
$('.mainContent .iframe').each(function () {
if ($(this).data('id') != id) {
$(this).remove();
}
});
});
```
这段代码会在点击TAB时,先获取对应的数据id,然后将所有TAB的active类移除,并将当前TAB添加active类以显示为当前选中TAB。接着,通过遍历所有iframe,将data-id属性不等于当前id的iframe删除。这样就控制了关闭除当前之外的TAB。
相关问题
<div id="tabs" class="easyui-tabs tabs-container easyui-fluid" data-options="fit:true,border:false" style="height: 100%; width: 2680px;"> <div class="tabs-header tabs-header-noborder" style="width: 2680px; display: none;"> <!-- tabs-header内容 --> </div> <div class="tabs-panels tabs-panels-noborder" style="height: 100%; width: 2680px;"> <div class="panel" style="display: block; width: 2680px;"> <div title="" style="overflow: hidden; border: none; width: 2680px; height: 100%;" data-options="type:'PageSign'" class="panel-body panel-body-noheader panel-body-noborder"> <iframe id="mainFrame" onload="hideLoading();" frameborder="no" scrolling="auto" style="border: none; overflow-x: hidden; overflow-y: hidden; margin: 0px;height: 100%;width: inherit;" src="/aqzl_project_war_exploded/platform/main/desktop.haze?systemId=1678873404683"></iframe> </div> </div> </div> </div> 改成这样后,最底部还是有个横向的空白区域
如果在修改后仍然存在最底部的横向空白区域,那可能是由于某个元素的宽度设置过大,超出了父容器的宽度所导致的。你可以检查父级容器和子元素的宽度设置,确保它们不会超出父容器的宽度。
另外,你可以尝试为父级容器和子元素添加`box-sizing: border-box;`样式属性,这样可以避免宽度被内边距和边框影响。
以下是修改后的示例代码:
```html
<div id="tabs" class="easyui-tabs tabs-container easyui-fluid" data-options="fit:true,border:false" style="height: 100%; width: 2680px; box-sizing: border-box;">
<div class="tabs-header tabs-header-noborder" style="width: 100%; display: none; box-sizing: border-box;">
<!-- tabs-header内容 -->
</div>
<div class="tabs-panels tabs-panels-noborder" style="height: 100%; width: 100%; box-sizing: border-box;">
<div class="panel" style="display: block; width: 100%; box-sizing: border-box;">
<div title="" style="overflow: hidden; border: none; width: 100%; height: 100%; box-sizing: border-box;" data-options="type:'PageSign'" class="panel-body panel-body-noheader panel-body-noborder">
<iframe id="mainFrame" onload="hideLoading();" frameborder="no" scrolling="auto" style="border: none; overflow-x: hidden; overflow-y: hidden; margin: 0px; height: 100%; width: 100%; box-sizing: border-box;" src="/aqzl_project_war_exploded/platform/main/desktop.haze?systemId=1678873404683"></iframe>
</div>
</div>
</div>
</div>
```
通过将父级容器和子元素的宽度设置为`100%`,并添加了`box-sizing: border-box;`样式属性,可以确保它们不会超出父容器的宽度,并且不会被内边距和边框影响。
请注意,还可以根据需要调整其他样式属性来适应你的布局需求。如果问题仍然存在,请提供更多相关代码和详细描述,以便我更好地帮助你解决问题。
<template> <view class="tabs"> <view class="tabs-header both"> <view v-for="(tab, index) in tabs" :key="index" :class="{ 'active': activeTab === index }" @click="changeTab(index)"> {{ tab }} </view> </view> <view class="tabs-content"> <slot :name="tabs[activeTab]"></slot> </view> </view> </template> <script setup> import { ref } from 'vue' const props = defineProps({ tabs: { type: Array, required: true }, }) let activeTab = ref(0) const changeTab = (index) => { activeTab.value = index } </script> <style lang="scss" scoped> .tabs { display: flex; flex-direction: column; height: 100%; .tabs-header { display: flex; justify-content: space-between; align-items: center; height: 50px; font-size: 30rpx; } .tabs-content { flex: 1; overflow-y: auto; } } .active { position: relative; color: #8a74ee; } .active::after { content: ""; position: absolute; width: 40rpx; height: 8rpx; background-color: #8a74ee; left: 0rpx; right: 0rpx; bottom: -50%; margin: auto; border-radius: 16rpx; } </style>帮我把这个组件优化成选项卡下面插槽中内容左右滑动时上面标签也会随之滑动
好的,可以尝试使用 better-scroll 库来实现选项卡下面内容左右滑动时上面标签也会随之滑动的效果,以下是代码实现:
<template>
<div class="tabs">
<div class="tabs-header both">
<div v-for="(tab, index) in tabs" :key="index" :class="{ 'active': activeTab === index }" @click="changeTab(index)">
{{ tab }}
</div>
</div>
<div class="tabs-content" ref="wrapper">
<div class="tabs-inner">
<slot :name="tabs[activeTab]"></slot>
</div>
</div>
</div>
</template>
<script setup>
import { ref, onMounted } from 'vue'
import BScroll from 'better-scroll'
const props = defineProps({
tabs: {
type: Array,
required: true
}
})
let activeTab = ref(0)
let tabsScroll = null
const changeTab = (index) => {
activeTab.value = index
tabsScroll.scrollToElement(`.tabs-header > div:nth-child(${index + 1})`, 300, true, true)
}
onMounted(() => {
tabsScroll = new BScroll($refs.wrapper, {
scrollX: true,
scrollY: false,
eventPassthrough: 'vertical'
})
})
</script>
<style lang="scss" scoped>
.tabs {
display: flex;
flex-direction: column;
height: 100%;
.tabs-header {
display: flex;
justify-content: space-between;
align-items: center;
height: 50px;
font-size: 30rpx;
> div {
position: relative;
padding: 0 30rpx;
&::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
opacity: 0;
transition: opacity 0.2s ease-in-out;
}
&.active::before {
opacity: 1;
background-color: #8a74ee;
border-radius: 16rpx;
}
}
}
.tabs-content {
flex: 1;
overflow: hidden;
.tabs-inner {
display: flex;
transition: transform 0.2s ease-in-out;
> * {
flex-shrink: 0;
width: 100%;
height: 100%;
}
}
}
}
</style>
主要变化如下:
1. 引入 better-scroll 库,使用 onMounted 钩子在组件挂载后初始化滚动实例。
2. 在 HTML 部分,将插槽内容包裹在一个 .tabs-inner 容器中,用于实现左右滑动效果。
3. 在 CSS 部分,对 .tabs-header 中的选项卡标签进行样式调整,使用 ::before 伪类实现选中状态下的底部标识。
经过以上优化,现在选项卡下面插槽中内容左右滑动时上面标签也会随之滑动了,希望能对你有所帮助。
阅读全文