javascript使用location.search的示例

时间:2023-07-16 09:14:40 


function GetRequest() {    
    var url = location.search; //获取url中"?"符后的字串    
    var theRequest = new Object();    
    if (url.indexOf("?") != -1) {       
        var str = url.substr(1);       
        strs = str.split("&");       
        for(var i = 0; i < strs.length; i ++) {          
            theRequest[strs[i].split("=")[0]]=unescape(strs[i].split("=")[1]);
        }
    }
    return theRequest;

var Request = new Object();
Request = GetRequest();
    var 参数1,参数2,参数3,参数N;
    参数1 = Request['参数1'];
    参数2 = Request['参数2'];
    参数3 = Request['参数3'];
    参数N = Request['参数N'];
   
标签:javascript,location.search
0
投稿

猜你喜欢

  • Python实现鼠标自动在屏幕上随机移动功能

    2022-01-30 05:08:15
  • Python中pillow知识点学习

    2023-11-26 05:27:01
  • 解决编码问题:UnicodeDecodeError: 'utf-8' codec can't decod

    2023-03-25 02:45:59
  • discuz 跨域整合的记录文件

    2023-07-23 14:17:27
  • PythonPC客户端自动化实现原理(pywinauto)

    2022-11-27 02:24:27
  • Vue的表单双绑和组件你了解吗

    2023-07-02 17:03:43
  • Python3爬虫带上cookie的实例代码

    2021-11-10 18:06:58
  • 分享4个方便且好用的Python自动化脚本

    2023-05-31 02:20:32
  • Python爬虫之用Xpath获取关键标签实现自动评论盖楼抽奖(二)

    2021-02-11 00:58:03
  • “尊重”设计师?

    2009-03-23 18:14:00
  • Python异常处理机制结构实例解析

    2021-11-30 15:59:27
  • Python Datetime模块和Calendar模块用法实例分析

    2022-08-05 10:23:46
  • 解析python 中/ 和 % 和 //(地板除)

    2021-04-19 02:05:14
  • Matplotlib使用字符串代替变量绘制散点图的方法

    2021-04-18 06:10:11
  • 解决PyCharm不在run输出运行结果而不是再Console里输出的问题

    2023-05-01 17:47:17
  • pyinstaller打包多个py文件和去除cmd黑框的方法

    2022-12-18 13:52:30
  • MySQL定时全库备份数据库

    2024-01-15 18:44:42
  • 基于php解决json_encode中文UNICODE转码问题

    2023-07-02 20:51:22
  • tensorflow 重置/清除计算图的实现

    2023-07-23 00:41:58
  • JS实现canvas简单小画板功能

    2023-08-21 07:40:49
  • asp之家 网络编程 m.aspxhome.com