Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

Get QueryString value in MVC View, JavaScript

Tags: code
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] === parameterNameresult = decodeURIComponent(tmp[1]);
        });

    return result;
}

//Usage, // query string: ?param1=anil&param2=&singh
let param1 = getURLSearchParams("param1");




This post first appeared on Programming, please read the originial post: here

Share the post

Get QueryString value in MVC View, JavaScript

×

Subscribe to Programming

Get updates delivered right to your inbox!

Thank you for your subscription

×