执行jquery函数或绕过jquery倒计时

时间:2015-07-15 03:06:52

标签: javascript jquery function console

页面中有倒计时。我想绕过或加速它。 是否有可能从chrome的控制台运行添加票证功能?或者我可以将xtime变量更改为2-3秒。或者直接调用添加票证功能?

    jQuery(document).ready(function($){
    var xTime=120;
    $("#ticketTimer").html(xTime);
    var myVar = setInterval( 
    function(){
        if(typeof checkAdBlock === 'undefined') 
        {
             document.getElementById("compt").innerHTML = "<b>you use an AdBlocker!</b> To win a ticket, <b>Desactivate AdBlock and reload the page.</b>";

            return false;
        }
        else if(xTime>0)
        {
            xTime--;
            $("#ticketTimer").html(xTime);
        }
        else
        {
            addTicket();
            clearInterval(myVar);

        }
    },
    1000);
    });

0 个答案:

没有答案