function closewin(){
self.opener=null;
self.close();
}
function clock(){
i=i-1
// document.title="本窗口將在"+i+"秒後自動關閉!";
$('.num').html(+i+"秒後自動關閉!");
if(i>0){
setTimeout("clock();",1000);
}else{
this.window.opener = null;
window.close();
}
}
var i=10
clock();html