html 对象标签的滚动位置

发布于 2024-12-09 05:06:38 字数 302 浏览 0 评论 0原文

我正在开发一个通过对象标签 < 提取 pdf 文档的项目;/object> 并且我想知道用户是否已滚动到该嵌入文档的底部以启用“我同意”复选框。我尝试使用 jQuery .scroll() 函数,但这不起作用。有什么建议吗?考虑到 Adob​​e Acrobat 是一个完全不同的界面,这可能是不可能的。另一方面,它确实成为了 DOM 的一部分,所以也许这是可能的!?

I am working on a project that pulls in a pdf document via the object tag <object data="the-url-to-the-document" class="ppa_document" type="application/pdf"></object> and I want to find out if the user has scrolled to the bottom of that embedded document to then enable the "i agree" checkbox. I tried it will the jQuery .scroll() function but that didn't work. Any suggestions? Considering Adobe Acrobat is a totally different interface, it may not be possible. On the other hand, it does become part of the DOM, so maybe it is possible!?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

剩余の解释 2024-12-16 05:06:38

对于大多数 DOM 元素,您可以使用scrollTop 属性。例如:

var position = document.getElementById('elemId').scrollTop;

然而,内部发生的事情是这样的:标签是另一回事...对于 PDF 文件,Acrobat Reader 正在处理滚动条,我不相信有 API 可以获取滚动条位置。但是,如果我错了,请纠正我,因为我很想了解自己是否有这样的事情。

For most DOM elements you could use the scrollTop property. For example:

var position = document.getElementById('elemId').scrollTop;

However, what happens inside of the <object> tag is a different story... In case of PDF files, Acrobat Reader is handling the scroll bars and I do not believe there is an API to get the scroll bar position. However, please correct me if I am wrong, as I'd love to know myself if there is such a thing.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文