gpt4 book ai didi

javascript - 试图找到 clientWidth 时,绝对位置搞砸了一切

转载 作者:太空宇宙 更新时间:2023-11-03 18:57:45 25 4
gpt4 key购买 nike

好的。因此,要获得 clientWidth,您必须添加代码

#menuSystem a{
position: absolute;
height: auto;
width: auto;
font-size: 15px;
}

您需要执行此操作才能使其有资格确定客户端宽度。我想要做的是将与链接相关的描述气泡的左边距设置为链接的 clientWidth 的长度。但是,当我将“绝对”CSS 属性添加到链接时,它们会变得一团糟。链接应该如何,而不是气泡: how the links should be, but not the bubble气泡应该如何而不是链接 how the bubble should be but not the links所以这是我的 JavaScript 函数

function hover(x){
var id = x;
var hoverBubble = document.getElementById(id);
var concat = ["menuLink", id];
var menuId = concat.join("");
var link = document.getElementById(menuId);
var linkWidth = link.clientWidth + 1;
hoverBubble.style.display = "inline";
hoverBubble.style.marginLeft = linkWidth + 'px';
}

最佳答案

还有其他方法可以“启用”clientWidth,例如float:leftdisplay:inline-block
有帮助吗?

关于javascript - 试图找到 clientWidth 时,绝对位置搞砸了一切,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13004333/

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