解析文档时是否可以检测 HTML 元素的位置(页脚、侧边栏)?

发布于 2024-12-13 08:34:46 字数 143 浏览 0 评论 0原文

我正在尝试开发一个脚本(在 php 中)来分析网页,并想知道是否可以检测页面上图像或链接的位置,无论它位于 a) 页面的顶部/底部还是 b ) 位于左侧/右侧以及页面的上半部分/下半部分。我想知道是否有任何准确的方法来解析 HTML 并准确检测这些元素在页面上显示的位置。

I'm trying to develop a script (in php) that anlayzes web pages and wondering if it's possible to detect the position of an image or a link on a page, whether it's located on the a) top/bottom of the page or b) on the left/right side and whether top half/bottom half of the page. I was wondering if there's any accurate method of parsing the HTML and detecting accurately the position of these elements as they would be displayed on the page.

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

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

发布评论

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

评论(1

不可一世的女人 2024-12-20 08:34:46

没有傻瓜证明方法。因为不同的浏览器在不同的屏幕上呈现不同的效果。这是最适合使用在客户端浏览器上运行的 javascript 的过程。

您需要服务器位置的原因是什么?

实现它的几种方法(超出我的想象)...

1)在后台生成 IE 或 firefox(或任何浏览器),使用 javascript 获取位置,然后将其传递给 php 脚本?

2)下载并编译网站库并编写一个php模块(插件)来处理这个问题?

3)是否在客户端用javascript计算位置,并使用AJAX将位置传回服务器?

4)重做网页,这样我们就不用关心位置了?

There is no fool prove method. Cos different browsers will render differently on different screens. This is a procedure best suited to using javascript running on the client browser.

What is the reason you need the position on the servers for?

A few ways to implement it (off the top of my head)...

1) Spawn IE or firefox (or any browser) in the background, to get the location using javascript that will then pass it to the php scripts?

2) Download and compile the website library and write a php module (plugin) to handle this?

3) Have the position be calculated in javascript on the client end, and use AJAX to pass the position back to the server?

4) Redo the web page, so that we don need to care about the position?

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