Get Query String Using Javascript
To get query string using Javascript:
hu = window.location.search.substring(1);
document.write(hu);
-We create a variable hu
-Built-in Javascript properties: window.location is the entire url. search.substring(1) is the part after the question mark.
-We write the value of hu to the browser.
Below is a function that will break the query string into pieces for you:
Free Copy and Paste Javascript Code:
<script type="text/javascript">
<!--
function querySt(ji) {
hu = window.location.search.substring(1);
gy = hu.split("&");
for (i=0;i<gy.length;i++) {
ft = gy[i].split("=");
if (ft[0] == ji) {
return ft[1];
}
}
}
var koko = querySt("koko");
document.write(koko);
document.write("<br>");
document.write(hu);
-->
</script>
本文介绍了一种使用JavaScript从当前URL中提取查询字符串的方法,并提供了一个实用的函数来解析查询参数,便于开发者轻松获取特定参数值。

1588

被折叠的 条评论
为什么被折叠?



