I m 几乎没有交叉浏览器问题。 我的法典似乎无法在伊埃开展工作。 如果任何人都能发现错误,我非常赞赏:
$(document).ready(function() {
var timerId = 0;
$( #timerwrap ).ready(function() {
$( #timerwrap ).html("Please wait <strong id= show-time >5</strong>");
console.log(timerId)
if (timerId == 0) {
timerId = window.setInterval(function() {
var timeCounter = $("#show-time").html();
var updateTime = parseInt(timeCounter, 10) - 1;
$("#show-time").html(updateTime);
if (updateTime <= 0) {
clearTimeout(timerId);
$( #timerwrap ).html("<a href= http://2ga.in/push/<?php echo("$item[seo]"); ?>/ target= _parent title= Continue to <?php echo("$item[title]"); ?> >Continue to...</a>");
}
}, 1000);
}
});
});