offical doc's,gotoBottom
の例に、角度$anchorScroll
の問題があります。 goToBottm
をクリックした後、$anchorScroll
はurl
に場所のID
を追加している - mysite.com/tag/##ID
、最初のロードにそれが正常に動作しますが、url
の終わりにID
滞在ページをrefershing
とき、スクロールが機能していません。 これを修正する方法についてのご意見はありますか?私のコード: HTML:
<button ng-click = "addRow(); gotoBottom()">add row </button>
そしてID:
<table id = "bottom">
...
</table>
私controller
でgotoBottom:
$scope.gotoBottom = function() {
// set the location.hash to the id of
// the element you wish to scroll to.
$location.hash('bottom');
// call $anchorScroll()
$anchorScroll();
};
にそれを追加し、まだそれを投稿、documationと同じコード – Chinni
を投稿してください? –
はい。何かがあなたのために働いていないので。 – Chinni