“Halaman Reload JavaScript” Kode Jawaban

Refresh Window JS

window.location.reload();
Worried Wolf

cara memuat ulang halaman yang sama menggunakan javascript

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

Refresh Page 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

Refresh Page JavaScript

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

Acara Refresh di JavaScript

window.onbeforeunload = function() {
        return "Dude, are you sure you want to refresh? Think of the kittens!";
}
Poised Peacock

Halaman Reload JavaScript

// Works on iOS Safari as well
location.reload()
window.location.reload()
Mysterious Macaque

Jawaban yang mirip dengan “Halaman Reload JavaScript”

Pertanyaan yang mirip dengan “Halaman Reload JavaScript”

Lebih banyak jawaban terkait untuk “Halaman Reload JavaScript” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya