有个显示层,z-index已经很大了,可是下拉菜单还是在它之上,谁能帮忙解答啊?下拉菜单的z-index负值也不

 我来答
fengzhiyu_double
2011-05-05 · TA获得超过906个赞
知道小有建树答主
回答量:514
采纳率:0%
帮助的人:522万
展开全部
我以前也经常遇到这个问题,后来我直接用js给每个div加上z-index,就不会出现这个问题了,呵呵……
给你个jquery的代码做这件事的。

//This code will start with a z-index of 10000, and decrement the z-index for each DIV element of the page by 10, giving the first DIV a z-index of 10000, the second, 9990, the third 9980, and so on. Notice that the selector will find all DIV elements with the code "$('div')", using the same syntax as CSS selectors.
$(function() {
var zIndexNumber = 10000;
$('div').each(function() {
$(this).css('zIndex', zIndexNumber);
zIndexNumber -= 10;
});
});
追问
白搭,试了,还是那样
追答
帖你代码或者给我你的网址。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式