我有一个在首页节点上投票的网站,每次投票后我都需要更新同一节点上的视图。我目前在我的 page.tpl.php 中使用以下代码
<script type="text/javascript">
function fivestarResult(voteResult) {
$('div#fivestar-summary-'+voteResult.vote.id).html(voteResult.result.summary);
window.location = "http://www.mydomain.com/";
};
</script>
有没有办法直接刷新视图而不是刷新整个页面?我在 javascript 方面不是很好,所以我有点迷茫。