博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
js中获取url参数
阅读量:5931 次
发布时间:2019-06-19

本文共 322 字,大约阅读时间需要 1 分钟。

function getUrlVars()
{
var vars = [], hash;
var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
for(var i = 0; i < hashes.length; i++)
{
hash = hashes[i].split('=');
vars.push(hash[0]);
vars[hash[0]] = hash[1];
}
return vars;
}

转载于:https://www.cnblogs.com/chunming-an/p/7447216.html

你可能感兴趣的文章
GMIT’s a fully functioning Wordpress website
查看>>
POJ 3994:Probability One
查看>>
位运算
查看>>
一个列表产生多少个含有两个元素的列表
查看>>
poj3468(线段树)
查看>>
hdu2151(递推dp)
查看>>
iOS 之 UITableView
查看>>
繁体简体转化_langconv.py
查看>>
boosting_bagging
查看>>
vue+vue-cli+vuex+vrouter 开发学习和总结
查看>>
PMI Link
查看>>
cf-Round551-Div2-D. Serval and Rooted Tree(DP)
查看>>
hdoj4734(数位dp优化)
查看>>
Python一切皆对象
查看>>
HDU 4686 Arc of Dream 矩阵快速幂
查看>>
语音处理
查看>>
putty
查看>>
Log4j
查看>>
Redis键值设计(转载)
查看>>
Java Utils工具类大全
查看>>