公式ドキュメントの例に従って$anchorScroll
、angular に問題があります。をクリックした後、場所のに追加されます - 、最初のロードでは正常に動作しますが、ページがの最後に留まり、スクロールが機能しません。これを修正する方法についてのアイデアはありますか? 私のコード: HTML:gotoBottom
goToBottm
$anchorScroll
url
ID
mysite.com/tag/##ID
refershing
ID
url
<button ng-click = "addRow(); gotoBottom()">add row </button>
そしてID:
<table id = "bottom">
...
</table>
私のgotoBottom controller
:
$scope.gotoBottom = function() {
// set the location.hash to the id of
// the element you wish to scroll to.
$location.hash('bottom');
// call $anchorScroll()
$anchorScroll();
};