“Eliminar URL de String JavaScript” Código de respuesta

Eliminar # de URL JavaScript

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

JS cómo eliminar # de cualquier URL usando JS

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

Eliminar URL de String JavaScript

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

JS cómo eliminar # de cualquier URL usando 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)

Respuestas similares a “Eliminar URL de String JavaScript”

Preguntas similares a “Eliminar URL de String JavaScript”

Más respuestas relacionadas con “Eliminar URL de String JavaScript” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código