如何在单击按钮时1)获取和2)输出里程表的当前值?应当执行的代码片段位于JavaScript的底部,但不起作用。
我的代码:https://jsfiddle.net/aht87opr/8/
里程表的文档可能会派上用场:
http://brock-family.org/gavin/software/web/odometer.html(上面写着“从里程表获取当前值:val = myOdometer-> get();”)
//My attempt to output the current value from the odometer:
$('button').click(function() {
n = myOdometer.get();
return n;
});
最佳答案
您应该只使用myOdometer.get()
,它已经为您提供了所需的号码。
如果要将值放在#value
元素内,则可以使用以下命令:
$('button').click(function() {
var mefedron = myOdometer.get();
$('#value').text(mefedron);
});
这是您的jsfiddle中的修复程序:
https://jsfiddle.net/aht87opr/14/
关于javascript - 单击按钮后如何获取和输出里程表的当前值?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45828593/