gpt4 book ai didi

jquery - 用于小屏幕的 Bootstrap 交换 div

转载 作者:行者123 更新时间:2023-11-28 05:36:09 24 4
gpt4 key购买 nike

我有一个在父 div 中具有绝对位置的子 div。

父 div 包含具有相对位置的 Bootstrap 轮播。

这是我的代码

 <div class="carousel>
Carousel goes here
<div class="col-md-6 SearchBoxHome">
content goes here
<div>
</div>

我想在小屏幕上将子 div 显示在父 div 的下方。

这是我试过但没有用的 jquery 代码。

var screenWidth = $(window).width();
if (screenWidth <= 767) {
$('.carousel').before($('.SearchBoxHome'));
} else {
return false;
}

请帮助我

最佳答案

试试这个:

var screenWidth = $(window).width();
if (screenWidth <= 767) {
var content = $('.SearchBoxHome');
$('.carousel').before(content);
$('.carousel').find('.SearchBoxHome').remove();
}

关于jquery - 用于小屏幕的 Bootstrap 交换 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38195838/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com