“Odśwież stronę JS” Kod odpowiedzi

Odśwież okno JS

window.location.reload();
Worried Wolf

Jak ponownie załadować tę samą stronę za pomocą JavaScript

BY LOVE
window.location.reload();
Light Leopard

Odśwież stronę 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

Odśwież stronę JavaScript

location.reload();
// OR
window.location.reload();
Anxious Alligator

Odśwież stronę JS

window.location.reload(true);
Enthusiastic Elephant

Odśwież stronę JS

<!DOCTYPE html>
<html>
<body>
    <p id="demo">Click the button Try it </p>
    <button onclick="myFunction()">Try it</button>

    <button onClick="window.location.reload();">Refresh Page</button>

    <script>
        function myFunction() {
            document.getElementById("demo").innerHTML = "Click the button refrech PAGE";
        }
    </script>
</body>
</html>
lerboh

Odpowiedzi podobne do “Odśwież stronę JS”

Pytania podobne do “Odśwież stronę JS”

Więcej pokrewnych odpowiedzi na “Odśwież stronę JS” w JavaScript

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

Przeglądaj inne języki kodu