JS Location对象:获取URL
8个月前 (04-27)
JavaScript location 对象中包含了有关当前页面链接(URL)的信息,例如当前页面的完整 URL、端口号等,我们可以通过 window 对象中的 location 属性来获取 location 对象。由于 window 对象是一个全局对象,因此在使用
window.location
时可以省略 window 前缀,例如 window.location.href
可以简写为 location.href
。location 对象中的属性
下表中列举了 JavaScript location 对象中常用的属性及其描述:属性 | 描述 |
---|---|
hash | 返回一个 URL 中锚的部分,例如:http://c.biancheng网站站点" rel="nofollow" /> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>JavaScript</title> </head> <body> <a href="http://c.biancheng网站站点" rel="nofollow" /> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>JavaScript</title> </head> <body> <a href="http://c.biancheng网站站点" rel="nofollow" /> |