在Javascript/jQuery中使用在URL中传递的变量
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Javascript/jQuery中使用在URL中传递的变量相关的知识,希望对你有一定的参考价值。
(I did not write this, but I forgot where I got it.)This code will find all the variables passed though the URL and return the one you are looking for.
// This function looks for all vars sent through the address bar 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; } // This looks to see if 'sent' was a sent through the address bar and saves the value of 'sent' to a new varable called 'NewVar' var NewVar = getUrlVars()["sent"];
以上是关于在Javascript/jQuery中使用在URL中传递的变量的主要内容,如果未能解决你的问题,请参考以下文章
在Javascript / Jquery中不在浏览器上打开它来执行URL
使用 Javascript / Jquery 重写 URL 前缀
我们如何在不重新加载页面的情况下使用 javascript/jQuery 更新 URL 或查询字符串?
如何使用 javascript/jquery 从 url 中提取文件名?