<script type="text/javascript">
//返回上一页并刷新
window.addEventListener('pageshow', function (event) {
if(event.persisted || window.performance && window.performance.navigation.type==2){
window.location.reload();
}
},false);
</script>
阅读量: 883