gpt4 book ai didi

javascript - 使用jquery获取div的底值

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

<div id="xx" style="bottom:20px;"></div>

如何获取 #xx 的底值

最佳答案

你可以使用

document.getElementById('xx').style.bottom;

您将获得字符串 '20px'

如果你想要它作为一个数字,你必须解析它:

var nb = parseInt(document.getElementById('xx').style.bottom, 10);

关于javascript - 使用jquery获取div的底值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15690964/

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