“Cómo recargar la ventana en JavaScript” Código de respuesta

Ventana de actualización JS

window.location.reload();
Worried Wolf

actualización de la página js

//with no cache
document.location.reload(true);
//else
document.location.reload();

/**
 * Si le paramètre est nul, recharge la page, sinon recharge la page avec le paramètre.
 * If the parameter is null, reload the page, else, reload the page with the parameter
 * @param [param=null] - Le paramètre que vous souhaitez ajouter à l'URL.
 */
function reloadPage(param = null){

    if ( param != null ){
        window.location.href = window.location.href.replace( /[\?#].*|$/, `${param}` );
    }

    else
    { 
        if ( window.location.href.split('?').length > 1 ){
            window.location.href = window.location.href.split('?')[0];
        }

        else 
            window.location.reload();
    }

    //param == null ? window.location.reload(): window.location.href = window.location.href.replace( /[\?#].*|$/, `${param}` );
}
Joyous Jaguar

Cómo recargar la ventana en JavaScript

location.reload():
Distinct Donkey

actualización de la página js

window.location.reload(true);
Enthusiastic Elephant

Actualizar JavaScript

location.reload();
Works like refresh button.
Thyago Mac

Cómo recargar la ventana en JavaScript

window.location.reload();
Distinct Donkey

Respuestas similares a “Cómo recargar la ventana en JavaScript”

Preguntas similares a “Cómo recargar la ventana en JavaScript”

Más respuestas relacionadas con “Cómo recargar la ventana en JavaScript” en JavaScript

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código