获取浏览器地址栏参数

function getURLParameter(name) {
  return decodeURIComponent((new RegExp(‘[?|&]‘ + name + ‘=‘ + ‘([^&;]+?)(&|#|;|$)‘).exec(location.search)||[,""])[1].replace(/\+/g, ‘%20‘))||null;
};
var token = getURLParameter("token");

  

时间: 2024-11-07 17:00:23

获取浏览器地址栏参数的相关文章

Javascript 获取浏览器URL参数

(function( window ){ var pageUtils = { //TODO 获取浏览器URL当前请求出参数 //Key 当前需要取参数的Key,不传返回所有参数对象 getRequest : function( key ){ var paramUrl = decodeURIComponent(location.search.substr(1) ); if(!paramUrl)return null; var paramObj = {}; //通过正则表达式替换为标准JSON字符串

获取URL地址栏参数(正则表达式)

/** * 获取地址栏参数 * @method queryURLParameter * @param {url:不传默认是当前locationhref ,isEncoded:是否是加密,不加密false,加密需要解密:true} * @return {参数对象} * eg:https://i.cnblogs.com/EditPosts.aspx?opt=1&item=youth * queryURLParameter('https://i.cnblogs.com/EditPosts.aspx?o

获取当前地址栏参数

1.当前地址:http:xxxx.com?type=1&area=2; 2.获取当前地址代码 var Url_url = { GetRequest : function(strName) { var strHref = window.location.href; var intPos = strHref.indexOf("?"); var strRight = strHref.substr(intPos + 1); var arrTmp = strRight.split(&qu

获取url地址栏参数

//获取url中的参数 function getUrlParam(name) { var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); //构造一个含有目标参数的正则表达式对象 var r = window.location.search.substr(1).match(reg); //匹配目标参数 if (r != null) return unescape(r[2]); retur

JS获取url地址栏参数

window.onload = function(){ //获取url中的参数 function getUrlParam(name) { var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); //构造一个含有目标参数的正则表达式对象 var r = window.location.search.substr(1).match(reg); //匹配目标参数 if (r != null)

window.location对象获取浏览器地址栏的地址信息

获取上一个页面的一个URL,这个URL一般做一个页面的跳转 window.location.href <script>window.location.href="http://www.baidu.com"</script> 获取一个页面的主机名 window.location.hostname 获取一个页面的主机名和端口号相当于是hostname和port window.location.host 获取主机的端口号 window.location.port 获取

C# 通过SendMessage获取浏览器地址栏的地址

1:通过SPY++获得地址栏的层次结构,然后一层一层获得 2:代码 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using System.Runtime.InteropServices; namespace ConsoleApplication4 { cl

Android 获取Web地址栏参数

public static void main(String[] args) { String url = "http://localhost/DTKCPTSWJ/NewsDetail.aspx?PID=9&ClassID=19&NewsID=115"; String[] parameters = { "ClassID", "NewsID" }; String u; try { u = URLDecoder.decode(url,

jquery获取浏览器URL参数

getRequestParams:function(param){ var reg = new RegExp("(^|&)" + param + "=([^&]*)(&|$)", "i"); var r = window.location.search.substr(1).match(reg); if (r != null) return unescape(r[2]); returnnull;} 使用方法:var repo