“js refresh element” Ответ

js refresh element

document.getElementById("youriframeid").contentWindow.location.reload(true);
Enchanting Elk

Обновить страницу 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

переехать див

function updateDiv()
{ 
    $( "#here" ).load(window.location.href + " #here" );
}
Lonely Lemur

Ответы похожие на “js refresh element”

Вопросы похожие на “js refresh element”

Больше похожих ответов на “js refresh element” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования