“Entfernen Sie die URL aus String JavaScript” Code-Antworten

Entfernen Sie # von URL JavaScript aus

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

JS Wie entfernen Sie # von jeder URL mit JS

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

Entfernen Sie die URL aus String JavaScript

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

JS Wie entfernen Sie # von jeder URL mit 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)

Ähnliche Antworten wie “Entfernen Sie die URL aus String JavaScript”

Fragen ähnlich wie “Entfernen Sie die URL aus String JavaScript”

Weitere verwandte Antworten zu “Entfernen Sie die URL aus String JavaScript” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen