我有一个div,如下所示
<span class="subtotal">
<b>Subtotal ₹ <span>12</span></b>
</span>
我试图以这种方式设置跨度内的数据
var subtotalvalue =100;
$(".myOrderPanel_footer .subtotal").find('span').text(subtotalvalue);
但它没有反映。
你可以告诉我如何设置元素跨度内的数据吗?答案 0 :(得分:1)
$(".subtotal").find('span').text(subtotalvalue);
至少,在你的小提琴中,类subtotal
的范围不在具有类.myOrderPanel_footer
的容器中,因此永远不会找到选择器。