Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
What exactly is your blockage? If the algorithm, then there are not many options
if (данные счетчика хранятся в БД || файле ) {
отправляем ajax-запрос || обычный запрос на сервер;
увеличиваем значение на 1 в хранилище;
} elseif (счетчик для каждого клиента свой && данные необходимо хранить на клиенте) {
используем localStorage/sessionStorage || cookie;
} else {
// а тут бы неплохо уточнить, что и как у вас построено
}
If the technical side of the issue, then tell me what does not work
Something like this:
var $btn = $('.btn'),
localStorageButtons = JSON.parse(localStorage.getItem('buttons')) || {};
if (localStorageButtons) {
$btn.each(function(i) {
$btn.text(localStorageButtons[i]);
});
}
$btn.on('click', function() {
var v = parseInt($(this).text(), 10),
i = $(this).index();
v++;
localStorageButtons[i] = v;
$(this).text(v);
localStorage.setItem('buttons', JSON.stringify(localStorageButtons));
});
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question