Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须刷新页面的内容而不用 javascript 重新加载页面。这是行不通的。
window.location.assign("#/invoice/" + $scope.invoiceId);
使用 AJAX。jQuery 为此提供了一个很好的包装器。
http://jQuery.com/
此示例将 ajax/test.html 加载到您的 #content div 中:
$.get('ajax/test.html', function(data) { $("#content").html(data); });