0

我必须刷新页面的内容而不用 javascript 重新加载页面。这是行不通的。

window.location.assign("#/invoice/" + $scope.invoiceId);
4

1 回答 1

0

使用 AJAX。jQuery 为此提供了一个很好的包装器。

http://jQuery.com/

此示例将 ajax/test.html 加载到您的 #content div 中:

$.get('ajax/test.html', function(data) {
     $("#content").html(data);
});
于 2013-01-30T12:41:47.967 回答