“Usuń adres URL z String JavaScript” Kod odpowiedzi

Usuń # z JavaScript URL

//Maybe you want to get relative_path
const RELATIVE_PATH = window.location.pathname; 
alert(RELATIVE_PATH)
Zarden

JS Jak usunąć # z dowolnego adresu URL za pomocą JS

//if the url is = https://example.com/#exampleid
var url = document.URL.split('#')[0]
//=> https://example.com/
//redirect it
location = url
Stupid Sardine

Usuń adres URL z String JavaScript

var b = url.replace(/(?:https?|ftp):\/\/[\n\S]+/g, '');
//=> and I said 
Undefined

JS Jak usunąć # z dowolnego adresu URL za pomocą JS

//if the url is = https://example.com/#exampleid
var url = document.URL.split('#')[0]
//=> https://example.com/
//redirect it
location = url
Ang is wolf dude (ang)

Odpowiedzi podobne do “Usuń adres URL z String JavaScript”

Pytania podobne do “Usuń adres URL z String JavaScript”

Więcej pokrewnych odpowiedzi na “Usuń adres URL z String JavaScript” w JavaScript

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

Przeglądaj inne języki kodu