什么定义了所有非相对链接?

发布于 2024-10-30 16:45:46 字数 128 浏览 0 评论 0原文

我正在寻找一种方法来区分 html 页面上的相对链接和非相对链接。

什么定义了所有非相对链接?我正在寻找某种正则表达式。

例如,是否所有非相对链接都包含 :// 而相对链接从不显示它?

I'm looking for a way do differ between relative and non-relative links on an html page.

What defines all non-relative links? I'm looking for some sort of regular expression.

for example, do all non-relative links contain :// and relative links never display it?

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

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

发布评论

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

评论(1

守不住的情 2024-11-06 16:45:46

互联网上的绝对以 http://https:// (或他们可能使用的任何其他方案)开始。我想你可以“包含”: // 正如你所说)。

以斜杠 (/) 开头的 Href 既是相对于 Web 服务器路径的绝对路径,又是相对于 Web 服务器路径的

路径。以字母/数字/符号或 ../ 开头的路径是相对于 Web 服务器路径的。页面的文件路径,../ 表示“下一个文件夹”。

Absolute across the internet start with http:// or https:// (or whatever other scheme they may be using. I guess you could "contains" :// as you said).

Hrefs starting with a slash (/) are both absolute from and relative to the web-server path

Paths starting with letters/numbers/symbols or ../ are relative to the page's file path, with ../ meaning "next folder up".

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