gpt4 book ai didi

javascript - 使用 javascript 检索 html 数据

转载 作者:行者123 更新时间:2023-11-28 04:49:19 25 4
gpt4 key购买 nike

所以我的 html 中有这行代码

    <td class="product-price">
<span class="amount" id="price">3915.00</span>
</td>

如何在我的 javascript 中将数字“3915.00”作为整数?

    <script>
function myFunction()
{
var priceStr = document.getElementById('price').value;
var priceInt = parseInt(price);
}

</script>

我可以这样做吗?还是有其他选择?

最佳答案

您可以使用innerHTMLtextContent

function myFunction() {
var priceStr = document.getElementById('price').innerHTML;
var priceInt = parseInt(priceStr);
return priceInt;
}

alert(myFunction());
<td class="product-price">
<span class="amount" id="price">3915.00</span>
</td>

关于javascript - 使用 javascript 检索 html 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36531029/

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