按钮功能更改为onload

时间:2017-09-29 14:53:55

标签: javascript jquery html5 jquery-ui jquery-plugins

我想要一个函数写入有载页面加载。此功能仅在加载10秒页面后才能使用。那可能吗?

当我们点击按钮时,我只想显示弹出窗口。我想在一段时间后在有载时改变它。

此代码无效。我需要一些未上传的插件和JavaScript。请帮我改变onload中的功能

$(function() {
  $("#timeout-example").click(function(e) {
    e.preventDefault();
    $.timeoutDialog({
      timeout: 1,
      countdown: 60,
      logout_redirect_url: 'https://google.com',
      restart_on_yes: false
    });
  });
});
<a href="#" id="timeout-example"> CLICK HERE TO VIEW POPUP </a>

1 个答案:

答案 0 :(得分:0)

您可以使用:

var timeLeft = 10;
var showTimerDiv = document.getElementById('showTimer');
var timerId = setInterval(countdown, 1000);

function countdown() {
    if (timeLeft == -1) {
        clearTimeout(timerId);
        doSomething();
    } else {
        showTimerDiv.innerHTML = timeLeft + ' seconds remaining';
        timeLeft--;
    }
}

function doSomething() {
    alert("Hi");
}

在线输出:jsfiddle