首页 > 其他分享 >获取当前页面URL信息

获取当前页面URL信息

时间:2023-11-10 13:23:34浏览次数:27  
标签:URL 获取 window url 设置 页面 location

1,设置或获取对象指定的文件名或路径。

window.location.pathname 

结果:/admin/index/index.html

2,设置或获取整个 URL 为字符串。

window.location.href  

结果:http://192.168.1.11/admin/index/news_edit.html?id=4,3

3,设置或获取与 URL 关联的端口号码。

window.location.port

结果:8080

4,设置或获取 URL 的协议部分。

window.location.protocol

结果:http:

5,设置或获取 href 属性中在井号“#”后面的分段。

window.location.hash

6,设置或获取 location 或 URL 的 hostname 和 port 号码。

window.location.host

答案:192.168.1.11

7,设置或获取 href 属性中跟在问号后面的部分。

window.location.search

结果:?id=4,3

8,获取变量的值(截取等号后面的部分)

 var url = window.location.search;

//    alert(url.length);

//    alert(url.lastIndexOf('='));

var loc = url.substring(url.lastIndexOf('=')+1, url.length);

9,用来得到当前网页的域名

var domain = document.domain;

原文链接:https://blog.csdn.net/centaury32/article/details/127317023

标签:URL,获取,window,url,设置,页面,location
From: https://www.cnblogs.com/linhan8888/p/17823874.html

相关文章

  • java: 执行Linux命令,获取结果
    packagecom.css.k3.k3xk.action;importjava.io.BufferedReader;importjava.io.InputStreamReader;publicclassMyCommandExecutor{publicstaticStringexecuteCommand(Stringcommand,Stringparameter){Stringresult=null;try{......
  • js帮我实现单页面跳转到指定页面的技术!
    网站的根目录下的HTML文件中(通常是 index.html 或 index.php)使用 window.location 对象。以下是一个简单的HTML页面示例,它包含了JavaScript代码,用于执行这样的重定向:<!DOCTYPEhtml><htmllang="en"><head><metacharset="UTF-8"><metahttp-equiv="X-UA-Compa......
  • C++中获取数组长度
    #include<iostream>usingnamespacestd;template<classT>intlength(T&arr){//cout<<sizeof(arr[0])<<endl;//cout<<sizeof(arr)<<endl;returnsizeof(arr)/sizeof(arr[0]);}intmain(){i......
  • MySQL 数据库表格创建、数据插入及获取插入的 ID:Python 教程
    创建表格要在MySQL中创建表格,请使用"CREATETABLE"语句。确保在创建连接时定义了数据库的名称。示例创建一个名为"customers"的表格:importmysql.connectormydb=mysql.connector.connect(host="localhost",user="yourusername",password="yourpassword&qu......
  • MySQL 数据库表格创建、数据插入及获取插入的 ID:Python 教程
    创建表格要在MySQL中创建表格,请使用"CREATETABLE"语句。确保在创建连接时定义了数据库的名称。示例创建一个名为"customers"的表格:importmysql.connectormydb=mysql.connector.connect(host="localhost",user="yourusername",password="yourpassword&qu......
  • 递归获取指定目录下的指定类型的文件
     1:递归获取指定目录下的指定类型的文件     public class FileTool    {        /// <summary>        ///  私有变量        ///  </summary>        private static List<FileInfo> lst = new List<FileInfo......
  • 使用命令行工具获取Ubuntu22的公网IP和私有IP
    1.想在互联网冲浪,公网IP是必不可少的(一般是路由器的公网IP)$curlifconfig.me2.私有IP一般是路由器分配的IP,私有IP在局域网内的计算机通信,然后利用路由器的公网IP与互联网上的计算机通信#注意是ifconfig,而不是windows中的dos命令ipconfig$ifconfigor$hostname-I3.为......
  • 获取随机数工具类
    1.通过Random获取随机数由System.Random中提供,它生成的数字被称为伪随机数,它是以相同的概率从一组有限的数字中选取的,所选的数字并不具有完全的随机性,但就实用而言,其随机程度已经足够了。实现思路:Randomr1=newRandom();inta1=r1.Next(1,100); 2.使用Guid生成随机......
  • 设置Thymeleaf页面复选框显示勾选效果
    Springboot版本<parent><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-parent</artifactId><version>2.7.14</version><relativePath/></parent>......
  • 如何获取一周的开始日期时间?
    内容来自DOChttps://q.houxu6.top/?s=如何获取一周的开始日期时间?在C#中,只知道当前时间,如何找到一周的开始(包括星期日和星期一)?类似于:DateTime.Now.StartWeek(Monday);使用扩展方法:publicstaticclassDateTimeExtensions{publicstaticDateTimeStartOfWeek......