作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在关注这个ionic5和 github文档以便以编程方式将我的页面滚动到一个点。以下是代码
getContent() {
return document.querySelector('ion-content');
}
scrollPage() {
this.getContent().scrollToPoint(100,100);
}
方法 scrollToPoint()
没有做任何事情。是否有另一种调用此方法的方法?
最佳答案
您不能在选择器获得的项目上应用方法。您必须使用 @ViewChild
选择此 ion-content 并且可以使用方法:
@ViewChild(IonContent) 内容:IonContent;
content.scrollToPoint(100,100);
关于ionic-framework - ion-content 方法 scrollToPoint 不适用于 Ionic 5,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61909190/
我是一名优秀的程序员,十分优秀!