<a href="javascript:void(0)" data-url="http://google.com" class="red">
基本上,一旦用户单击它,就会出现一个带有计时器的灯箱,然后使用 data-url 进入 url。那可能吗?
你也将如何结合这些,
jQuery(document).ready(function(){
var link = document.getElementsByTagName("a")[0];
link.onclick = function(){
$('.lightbox').show();
setTimeout(function(){window.location.href = link.getAttribute("data-url")}, 1000)
}
});
$(function(){
var count = 10;
countdown = setInterval(function(){
$("p.countdown").html(count + " seconds remaining!");
if (count == 0) {
window.location = 'http://google.com';
}
count--;
}, 1000);
});