1

JS 获取 URL参数

 1 year ago
source link: https://abcdxyzk.github.io/blog/2023/07/16/lang-web-query/
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.
neoserver,ios ssh client

JS 获取 URL参数

2023-07-16 07:55:00

https://www.runoob.com/w3cnote/js-get-url-param.html

function getQueryVariable(variable)
{
	var query = window.location.search.substring(1);
	var vars = query.split("&");
	for (var i=0;i<vars.length;i++) {
		var pair = vars[i].split("=");
		if(pair[0] == variable){return pair[1];}
	}
	return(false);
}

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK