gpt4 book ai didi

jquery - IE 中的嵌套 ul li ul 间隙

转载 作者:行者123 更新时间:2023-11-28 14:26:59 24 4
gpt4 key购买 nike

我在 IE 中显示嵌套列表时遇到问题,firefox 显示完美。

我还附上了屏幕截图和代码。

HTML代码:

<div class="header-boxes" id="topic-options">
<a id="slidertoggle" href="#">List Title</a>
<div id="options" style="display: none;">
<ul>
<li ><a href="#">Topic1</a></li>
<li ><a href="#">Topic2</a></li>
<li ><a href="#">List1 » </a>
<ul >
<li><a href="#">Topic3</a></li>
<li><a href="#">Topic4</a></li>
<li><a href="#">Topic5</a></li>
</ul>
</li>
<li ><a href="#">Topic6</a></li>
</ul>
</div>
</div>

CSS 代码:

    #topic-options {
width: auto;
z-index: 3000;
}

.header-boxes {
float: left;
font-family: "Trebuchet MS",Arial,sans-serif;
font-size: 13px;
height: 27px;
margin-right: 8px;
}

a#slidertoggle {
background: url('2downarrow.png') no-repeat scroll 95% 50% #D9E4FF;
border-radius: 5px 5px 5px 5px;
color: #3F3019;
display: block;
padding: 7px;
width: auto;
margin: 0;
}

a:link, body_alink {
color: #B35400;
}

a {
color: #B35400;
text-decoration: none;
}

#options {
border: 1px solid #EBE1D6;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
display: none;
position: absolute;
width: auto;
z-index: 50;
}

ol, ul {
list-style: none outside none;
padding : 0;
margin : 0;
}

#options ul li {
border-bottom: 1px solid #EBE1D6;
background-color: #DFEFFC;
position: relative;
}

#options ul li a {
background-color: #DFEFFC;
display: block;
padding: 7px 10px;
}


#options ul ul {
border: 1px solid #EBE1D6;
border-bottom-right-radius: 5px;
border-top-right-radius: 5px;
left: 100%;
position: absolute;
top: -1px;
visibility: hidden;
}

屏幕截图:

在 firefox 中,代码运行良好,可以正常显示预期的嵌套列表。

火狐:

Firefox http://geniusguru.in/test/moz.jpg

在 IE 中(在 IE7 中测试过),代码显示如下图,li 中的嵌套 ul 与其父级之间有间隙。尝试了所有该死的东西,但没有运气。

IE7:

IE7 http://geniusguru.in/test/ie.JPG

请帮帮我。

抱歉没有发布我的 jquery 代码

JQUERY 代码:

     function getSubnav(ele) {
if (ele.nodeName.toLowerCase() == 'li') {
var subnav = $('> ul', ele);
return subnav.length ? subnav[0] : null;
} else {
return ele;
}
}


$(document).ready(function(){

$('#slidertoggle').click(function(e){
e.preventDefault();
$('#options').show();
});

$('#options').mouseleave(function(e){
$('#options').hide();
});

var maxWidth = $('#topic-options').width()>$('#options').width()?$('#topic-options').width()+24:$('#options').width()+24;

$('#topic-options').css({'width': maxWidth+'px'});
$('#options').css({'width': maxWidth+'px'});

$('#options > ul > li > ul').each(function(){
$(this).css({'width' : maxWidth+'px'});
});

$('#options > ul > li').hover(function(){

var sub = getSubnav(this);

if(!sub) return;
$(sub).css({'visibility' : 'visible'});
},
function(){

var sub = getSubnav(this);

if(!sub) return;
$(sub).css({'visibility' : 'hidden'});
});

});

谢谢,
桑迪普

最佳答案

http://jsfiddle.net/TEqmH/1/

在我这边工作正常,无论是在 IE7,firefox 等:/

关于jquery - IE 中的嵌套 ul li ul 间隙,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7845313/

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