gpt4 book ai didi

jquery - 从容器的右到左动态打开框

转载 作者:行者123 更新时间:2023-11-28 05:07:50 25 4
gpt4 key购买 nike

我有一个容器 div,我想在其中使用 jquery 动态创建其他框 (div)。每个新盒子都应该放在其他打开的盒子的左侧。一切正常,除了盒子打开到其他打开盒子的右侧这一事实。到目前为止,我是这样做的:

#container{

overflow-y:hidden;
white-space:nowrap;
border:none;
position:relative;
z-index:998;
overflow:hidden;
float:left;
display:table-row;
vertical-align:bottom;
}
.box{

z-index:997;
vertical-align:bottom;
width: 225px;
position:static;
border:1px solid #666666;
/*next lines are added to force boxes go to bottom when minimized-cross browser solytion*/
display:-moz-inline-stack;
display:inline-block;
zoom:1;
*display:inline;
}

有什么建议吗?

最佳答案

而不是附加它们(我假设你是)使用 prepend在开头添加新元素..

var newEl = $('<div>',{class:'box', text:'whatever..'});
$('#container').prepend( newEl );

演示在 http://www.jsfiddle.net/gaby/acnNe/

关于jquery - 从容器的右到左动态打开框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4822344/

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