您的当前位置:首页正文

HTML网页中的URL表示方式_HTML/Xhtml_网页制作

2020-11-27 来源:钮旅网

在HTML中,常见的URL有多种表示方式:
相对URL:

代码如下:
example.php
demo/example.php
./example.php
../../example.php
/example.php

绝对URL:

代码如下:
http://jb51.net/example.php
http://jb51.net:80/example.php
https://jb51.net/example.php

同时HTML中有大量的元素属性值为URL,一般利用JavaScript获取这些URL属性值有两种方法:

代码如下:
此时页面绝对URL是http://jb51.net/

显示全文