如何在JS中获取Request方法
Posted 咖啡漩涡
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在JS中获取Request方法相关的知识,希望对你有一定的参考价值。
方法
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 = GetRequest(); var key = Request["EphemeralId"];
转载请注明:http://www.cnblogs.com/CoffeeEddy/p/5814701.html
GetQueryString
以上是关于如何在JS中获取Request方法的主要内容,如果未能解决你的问题,请参考以下文章
C#-WebForm-★内置对象简介★Request-获取请求对象Response相应请求对象Session全局变量(私有)Cookie全局变量(私有)Application全局公共变量Vi(代码片段