gpt4 book ai didi

javascript - ionic 滚动到元素

转载 作者:搜寻专家 更新时间:2023-11-01 04:15:27 26 4
gpt4 key购买 nike

我有一个:

<span id="quote-{{quote.id}}" ng-repeat="quote in quotes">{{quote.text}}</span>

我正在尝试使用一个索引来滚动到滚动条的任何部分:

$scope.jumpToQuote = function (quote) {
$scope.quoteSelected = quote;
var quotePosition = $ionicPosition.position(angular.element(document.getElementById('quote-'+quote)));
$ionicScrollDelegate.$getByHandle('quotes-box').scrollTo(quotePosition.left, quotePosition.top, true);
}

但是 quotePosition.top 的值始终等于 10,这是 <ion-scroll> 的顶部偏移量.

最佳答案

据我所知,您需要将 document.getElementById('quote-'+quote) 替换为 document.getElementById('quote-'+quote.id) ,您正在连接整个 quote 对象而不是它的 id

关于javascript - ionic 滚动到元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32301054/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com