评论

收藏

[R语言] asp和js获取当前网页地址和参数的例子

编程语言 编程语言 发布于:2021-08-03 10:14 | 阅读数:180 | 评论:0

’asp 获取网页地址及参数
function getwebpageurl()
dim host,keyword
host = Request.ServerVariables("HTTP_HOST")    ’获取域名
keyword = Request.ServerVariables("QUERY_STRING")    ’获取参数集
variable = Request.ServerVariables("PATH_INFO") ’获取网页路径

if keyword <> "" then
getwebpageurl = "http://" &host&variable&"?"&keyword
else
getwebpageurl = "http://" &host&variable
end if
end function
’js获取网页地址及参数
var url=location.search; //获取参数集
var url2 = window.location.href ; 获取全路径
if( url.indexOf("?")!=-1){
var str = url.substr(1);
strs = str.split("&");
for(var i=0;i    document.write(strs.split("=")[0] +" = "+ strs.split("=")[1] + "/n");  
}
}


关注下面的标签,发现更多相似文章