var i=5;
function hsfh(){
i=i-1;
document.getElementById("ds").innerHTML=i;
if(i==0)
{
window.history.back()
}
setInterval("hsfh()",1000)
全局变量?