//JS延时一秒执行
setTimeout(function(){
    window.history.go(0);
}, 1000);
05-11 11:26