gpt4 book ai didi

javascript - JS Prototype 在类中使用类

转载 作者:行者123 更新时间:2023-12-03 04:28:35 25 4
gpt4 key购买 nike

<td class="a-right">
<span class="price-excl-tax">
<span class="price">$299.00</span>
</span>
<br>
</td>

我已经生成了上面的 HTML 代码。我需要使用 JS Prototype 来获取内部跨度的值。有多个带有“price”类的跨度,但只有这个跨度嵌套在“price-excl-tax”类中。

http://prototypejs.org/doc/latest/Prototype/Selector/

这就是我所拥有的:

console.log("Base price is: " + $$('price-excl-tax')[0].$$(span.price[0]).value);

最佳答案

为什么不使用子选择器。请参阅下面的代码片段

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<td class="a-right">
<span class="price-excl-tax">
<span class="price">$299.00</span>
</span>
<br>
</td>
<script>
console.log("Base price is: " + $("price-excl-tax > price"));
</script>

关于javascript - JS Prototype 在类中使用类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43594633/

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