如何1)得到和2)按鈕點擊輸出我的里程錶的當前值? snipet應該做的是在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;
});
試推值變得像一個已知元素,表單字段,或全球性的,或發佈該值到你的服務器。 – Les