ecshop后台文件夹中message.htm页面把function redirection() 方法里面的window.clearInterval();这个屏蔽了
function redirection()
{
if (seconds <= 0)
{
// window.clearInterval();
return;
}
seconds --;
document.getElementById('spanSeconds').innerHTML = seconds;
if (seconds == 0)
{
// window.clearInterval();
location.href = defaultUrl;
}
}