onClick事件做了不止一件事

时间:2011-03-09 22:23:39

标签: javascript jquery ajax

我目前有以下格式的链接:

<a href='export.php' onClick='history.go(0)'>Export</a> 

导出页面返回一个csv文件,因此单击链接的主页面不会刷新,但是我希望这样做。

如何在点击链接后刷新当前页面?

感谢。

2 个答案:

答案 0 :(得分:0)

<a href='export.php' onclick='history.go(0); window.location.href = window.location.href;'>Export</a>

应该做的伎俩。

答案 1 :(得分:0)

我可以尝试猜测代码:

<script>
$(document).ready(function(event){
  $(".exportLink").click(function(event){

    window.location.reload();
    //export.php is called after this clickEvent completes, or you could $.get it at the start of this function
  });
});
</script>
我使用的HTML代码:

<a href='export.php' class="exportLink">Export</a>