Make a hidden field and put the vale in it as
like below example, then get the value using jQuery selector.
As
an Example,
MVC View Code looks like this,
<input type='hidden' value='@Request.QueryString["token"]'
id='hdnToken' />
JavaScript code looks like this,
$(function () {
var token= $("#hdnToken").val();
console.log(token);
});
Another Example,
//You can use URLSearchParams which is simple .
var getURLSearchParams = function (parameterName) {
var result = null,
tmp = [];
location.search
.substr(1)
.split("&")
.forEach(function (item) {
tmp = item.split("=");
if (tmp[0] === parameterName) result = decodeURIComponent(tmp[1]);
});
return result;
}
//Usage, // query string: ?param1=anil¶m2=&singh
let param1 = getURLSearchParams("param1");