gpt4 book ai didi

javascript - 如何找到li和div之间的距离

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

实际上我正在将 HTML 转换为 JSON

我有这样的 html:

<div class="treeprofit" id="divTreeViewIncomeDetails" style="height: auto;">
<li><span class="fa fa-folder-open highlight" id="3" onmouseover="visibleLink('3', 'Incomes', '0')" onmouseout="hideLink('3')"><span onclick="GetTreeViewChartOfAccountsByParam('3', 'Incomes')">Incomes </span><span class="closingbalance">INR 50.00Dr </span></span>
<ul>
<ul>
<li><span class="fa fa-file chartwidth" id="84" onmouseover="visibleLink('84', 'Sales A/c', '1')" onmouseout="hideLink('84')" onclick="ViewLedgerMsg(84)"><span onclick="GetTreeViewChartOfAccountsByParam('84', 'Sales A/c')">Sales A/c </span><span class="closingbalance">INR 50.00Dr </span></span></li>
</ul>
<ul>
<li><span class="fa fa-folder-open chartwidth" id="98" onmouseover="visibleLink('98', 'Indirect Income', '1')" onmouseout="hideLink('98')"><span onclick="GetTreeViewChartOfAccountsByParam('98', 'Indirect Income')">Indirect Income </span><span class="closingbalance">INR 0.00Cr </span></span>
<ul>
<ul>
<li><span class="fa fa-file chartwidth" id="99" onmouseover="visibleLink('99', 'Realized Exchange Gain', '2')" onmouseout="hideLink('99')" onclick="ViewLedgerMsg(99)"><span onclick="GetTreeViewChartOfAccountsByParam('99', 'Realized Exchange Gain')">Realized Exchange Gain </span><span class="closingbalance">INR 0.00Cr </span></span></li>
</ul>
<ul>
<li><span class="fa fa-file chartwidth" id="122" onmouseover="visibleLink('122', 'Rounding off Gain A/c', '2')" onmouseout="hideLink('122')" onclick="ViewLedgerMsg(122)"><span onclick="GetTreeViewChartOfAccountsByParam('122', 'Rounding off Gain A/c')">Rounding off Gain A/c </span><span class="closingbalance">INR 0.00Cr </span></span></li>
</ul>
<ul>
<li><span class="fa fa-file chartwidth" id="124" onmouseover="visibleLink('124', 'Discount Received A/c', '2')" onmouseout="hideLink('124')" onclick="ViewLedgerMsg(124)"><span onclick="GetTreeViewChartOfAccountsByParam('124', 'Discount Received A/c')">Discount Received A/c </span><span class="closingbalance">INR 0.00Cr </span></span></li>
</ul>
<ul>
<li><span class="fa fa-file chartwidth" id="140" onmouseover="visibleLink('140', 'Stock Income', '2')" onmouseout="hideLink('140')" onclick="ViewLedgerMsg(140)"><span onclick="GetTreeViewChartOfAccountsByParam('140', 'Stock Income')">Stock Income </span><span class="closingbalance">INR 0.00Cr </span></span></li>
</ul>
</ul>
</li>
</ul>
<ul>
<li><span class="fa fa-file chartwidth" id="134" onmouseover="visibleLink('134', 'Clearing And Forwarding Rcd', '1')" onmouseout="hideLink('134')" onclick="ViewLedgerMsg(134)"><span onclick="GetTreeViewChartOfAccountsByParam('134', 'Clearing And Forwarding Rcd')">Clearing And Forwarding Rcd </span><span class="closingbalance">INR 0.00Cr </span></span></li>
</ul>
<ul>
<li><span class="fa fa-file chartwidth" id="135" onmouseover="visibleLink('135', 'Transport charges received ', '1')" onmouseout="hideLink('135')" onclick="ViewLedgerMsg(135)"><span onclick="GetTreeViewChartOfAccountsByParam('135', 'Transport charges received ')">Transport charges received </span><span class="closingbalance">INR 0.00Cr </span></span></li>
</ul>
<ul>
<li><span class="fa fa-file chartwidth" id="156" onmouseover="visibleLink('156', 'Sales Discount A/c', '1')" onmouseout="hideLink('156')" onclick="ViewLedgerMsg(156)"><span onclick="GetTreeViewChartOfAccountsByParam('156', 'Sales Discount A/c')">Sales Discount A/c </span><span class="closingbalance">INR 0.00Cr </span></span></li>
</ul>
<ul>
<li><span class="fa fa-file chartwidth" id="158" onmouseover="visibleLink('158', 'Stock Income A/c', '1')" onmouseout="hideLink('158')" onclick="ViewLedgerMsg(158)"><span onclick="GetTreeViewChartOfAccountsByParam('158', 'Stock Income A/c')">Stock Income A/c </span><span class="closingbalance">INR 0.00Cr </span></span></li>
</ul>
<ul>
<li><span class="fa fa-file chartwidth" id="163" onmouseover="visibleLink('163', 'Exchange Gain A/c', '1')" onmouseout="hideLink('163')" onclick="ViewLedgerMsg(163)"><span onclick="GetTreeViewChartOfAccountsByParam('163', 'Exchange Gain A/c')">Exchange Gain A/c </span><span class="closingbalance">INR 0.00Cr </span></span></li>
</ul>
</ul>
</li>
<li><span class="fa fa-arrow-down" style="width: 100%; color: red; font-weight: 700;"><span>Net Loss </span><span class="closingbalance">14,950.00Cr</span></span></li>
</div>

CSS:

.treeprofit {
padding: 10px;
font-size: 16px;
border:1px solid #999;
}

.treeprofit li span :hover {
background-color: whitesmoke;
border: 0px;
color: black;
}
/*Color changes on MouseOver for Root Id*/
.treeprofit li > span:hover {
background-color: whitesmoke;
border: 0px;
color: black;
}


.treeprofit ul {
list-style-type: none;
padding-left:15px;
}

.treeprofit li { list-style-type: none;

}

.treeprofit li :hover {

cursor:pointer;
}

我需要找到 lidiv 之间的距离

我试过下面的代码但是没有用

var items = [];
var inputData = $('#divTreeViewIncomeDetails').find('li > span');

for (var i = 0; i < inputData.length; i++) {
var position, data1, data2;
position = inputData[i].className;
data1 = inputData[i].children['0'].innerText.trim();
data2 = inputData[i].children['1'].innerText.trim();
var width = inputData[i].offsetLeft;
var item = { position: position, data1: data1, data2: data2, width:width }
items.push(item);
}

我正在获取宽度值,但它不正确

注意:不应在 HMTL 中进行任何更改

最佳答案

这将获得页面上所有 LI 元素的句柄。遍历它们,然后将它们的左偏移量记录到控制台。

$('li').each(function(){
console.log($(this).prop('offsetLeft'))
})

关于javascript - 如何找到li和div之间的距离,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25913896/

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