有一点计算:
$('.sum-value').html(
($('.one-value').html()) * ($('.another-value').html())
);
想计算出.one-value
and .another-value
。这些值是具有相应类的 html 跨度内的数字。因此,如果我回显这两个,我会得到一个数字。并将总和添加到.sum-value
。
这是可能的还是我必须转储.one-value
到. 实际上它不起作用,但我在控制台中也没有错误。.another-value
var
有什么建议么?