i php, mysql, jquery kullanarak duyuyorum.
I arka uç ve verileri kaydetmek ve tepki göstermek için gitmek bir kurtarış kullanıcı tıkladığında. bir kere ben diyelim 1 dakika için kaydetmek düğmesini devre dışı bırakmak için gereken başarıyı gösterecektir. ben bunu nasıl yapar.?
Burada ma kodu
$(document).ready(function() {
if ($.cookie('<?php echo $userId ?><?php echo $product ?><?php echo $alias ?>agreedisabledTime') > 0) {
var remainingTime = (new Date()).getTime() - $.cookie('<?php echo $userId ?><?php echo $product ?><?php echo $alias ?>agreedisabledTime');
if (remainingTime < <?php echo $timer ?>) {
//if (remainingTime < 7200) {
$('#agree').attr('disabled', 'disabled');
$('#disagree').attr('disabled', 'disabled');
setTimeout(function() { $('#agree').attr('disabled', ''); }, remainingTime);
setTimeout(function() { $('#disagree').attr('disabled', ''); }, remainingTime);
}
}
$('#agree').click(function()
{
$('#response').show();
$.post('/all_include_files/increment.php',{update:'agree',product:"<?php echo $product?>",alias:"<?php echo $alias ?>"},function(data)
{
if(data.indexOf('ERROR') < 0)
{
$('#response').hide();
$('.agree_number').html(data);
alert('Thanks for your esteemed opinion');
$('#agree').attr('disabled', 'disabled');
$('#disagree').attr('disabled', 'disabled');
setTimeout(function() { $('#agree').attr('disabled', ''); }, "<?php echo $timer ?>");
setTimeout(function() { $('#disagree').attr('disabled', ''); }, "<?php echo $timer ?>");
$.cookie('<?php echo $userId ?><?php echo $product ?><?php echo $alias ?>agreedisabledTime', (new Date()).getTime());
}
else
{ alert(data); }
});
});
});
$ zamanlayıcı 120.000 ayarlanır nerede