gpt4 book ai didi

javascript - 获取 LI 元素的 offsetWidth(或等效项)

转载 作者:行者123 更新时间:2023-11-29 16:07:47 25 4
gpt4 key购买 nike

所以我尝试使用 jQuery 获取元素的宽度。

alert($("#theList li:eq(0)").offsetWidth);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<ol id="theList">
<li>The quick brown fox
</ol>

最佳答案

jQuery 具有返回元素的 offsetWidth$(elem).width() 函数

alert($("#theList li:eq(0)").width());
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<ol id="theList">
<li>The quick brown fox</li> <!--also you forgot closing tag -->
</ol>

关于javascript - 获取 LI 元素的 offsetWidth(或等效项),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36903492/

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