Показать сообщение отдельно
  #3 (permalink)  
Старый 01.07.2014, 16:18
Аспирант
Отправить личное сообщение для SLameN Посмотреть профиль Найти все сообщения от SLameN
 
Регистрация: 13.08.2012
Сообщений: 70

Да, но проблема же не только в этом Вот например я взял ваш пример
<script src="http://code.jquery.com/jquery-latest.js"></script>
  <script>
   $(function ()
   		{
   				var timers, ret;
   				$(":button")
   				.click(function ()
   						{
   								$(this)
   								.val("\u25b6" == $(this)
   										.val()? "\u25fc": "\u25b6")
   								.prev()
   								.data(
   										{
   										timer: (new Date)
   												.getTime()
   										}
   								)
   								.toggleClass("timer");
   								timers = $(".timer");
   								timers.size() && Timer()
   						}
   				);

   				function two(a) {
   						return (9 < a? "": "0") + a
   				}

   				function formatTime(a) {
   						a = Math.floor(a / 1E3);
   						var b = Math.floor(a / 60),
   						c = Math.floor(b / 60);
   						a %= 60;
   						b %= 60;
   						return two(c) + " : " + two(b) + " : " + two(a)
   				}

   				function Timer() {
   						window.clearTimeout(ret);
   						timers.each(function (a, b)
   								{
   										var c = (new Date)
   										.getTime() - $(b)
   										.data("timer") | 0,
   										c = formatTime(c);
   										$(b)
   										.html(c)
   								}
   						);
   						timers.size() && (ret = window.setTimeout(Timer, 1000))
   				};

   		}
   );
  </script>


<div id="timer">00 : 00 : 00</div>

        <form method="post">
            <select>
                <option>Начало</option>
                <option>Окончание</option>
            </select>

<input type="submit" value="Сохранить" class="button" />
        </form>


1. Как заставить работать таймер по кнопке submit?
2. Как время выводить в блок - timer
3. Как сделать ajax, перезагрузка страницы не сбивала таймер
Ответить с цитированием