javascript 刷新页面的几个技巧

时间:2011-8-10     作者:smarteng     分类: WEB相关


老坑的博客终于好了,今天看了一下,看到这篇文章,就从老坑那边转过来,

博客地址:http://www.neatstudio.com/show-1689-1.shtml

 做WEB开发,有时候会需要在获取数据后重新刷新页面,如果删除一条数据时,就需要刷新一下显示。以前很多时候,我都是用location.reload()来解决的。

今天再看到某篇 文章的时候才发现,原来还有那么多的技巧,一下子傻眼了。

JavaScript代码
  1. history.go(0)   
  2. location.reload()   
  3. location=location   
  4. location.assign(location)   
  5. document.execCommand('Refresh')   
  6. window.navigate(location)   
  7. location.replace(location)   
  8. document.URL=location.href