“JS otrzymuje parametr URL” Kod odpowiedzi

Uzyskaj parametr z rzeczywistego JavaScript URL

// https://testsite.com/users?page=10&pagesize=25&order=asc
const urlParams = new URLSearchParams(window.location.search);
const pageSize = urlParams.get('pageSize');
vmxes

JS Sprawdź parametr URL

const params = new URLSearchParams(window.location.search);

// Check if we have the param
if (params.has("myParam")) {
  console.log("Yep!  We have it.  Value is: " + params.get("myParam"));
} else {
  console.log("The param myParam is not present.");
}
Nuclear Man

Uzyskaj paramby js

// www.example.com/users?token=12345

let params = (new URL(document.location)).searchParams;
let token = params.get("token");
// 12345
Lucas Juan

JS otrzymuje parametr URL

const queryString = window.location.search;
const urlParams = new URLSearchParams(queryString);
const code = urlParams.get('code')
Awful Anaconda

JS otrzymuje paramenty adresowe

const params = new URLSearchParams(window.location.search);
const something = decodeURIComponent(params.get('hi'));
// or shorter, no need to use variables
decodeURIComponent((new URLSearchParams(window.location.search)).get('hi'))
Code Cat

JS otrzymuje parametr URL

var url_string = "http://www.example.com/t.html?a=1&b=3&c=m2-m3-m4-m5"; //window.location.href
var url = new URL(url_string);
var c = url.searchParams.get("c");
console.log(c);
Cloudy Cod

Odpowiedzi podobne do “JS otrzymuje parametr URL”

Pytania podobne do “JS otrzymuje parametr URL”

Więcej pokrewnych odpowiedzi na “JS otrzymuje parametr URL” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu