次のスクリプトでは、keith-wood Countdown を使用しています。
<script type="text/javascript" src="jquery.countdown.js"></script>
<script type="text/javascript">
$(function () {
$('#defaultCountdown').countdown({
until: +60,
format: 'yodhmS',
layout: '{y<}{yn}a, {y>}{o<}{on}m, {o>}{d<}{dn}g, {d>}{h<}{hn}o, {h>}{m<}{mn}m, {m>}{s<}{snn}s{s>}'
});
});
ユーザーがリセットボタンをクリックしたときにカウントダウンをリセットしたい。次の解決策を試しましたが、うまくいきません。次のエラーが表示されます:「Uncaught Unknown command: change」
$(document).ready(function() {
$('#reset').click(function() {
$('#defaultCountdown').countdown('change', {until: +60});
});
});
</script>
<div id="defaultCountdown"></div>
<input type="button" id="reset" value="Reset" />
誰かが私を助けることができますか?ありがとうございました!